10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
|
import * as React from 'react';
|
||
|
interface IndentProps {
|
||
|
prefixCls: string;
|
||
|
level: number;
|
||
|
isStart: boolean[];
|
||
|
isEnd: boolean[];
|
||
|
}
|
||
|
declare const _default: React.NamedExoticComponent<IndentProps>;
|
||
|
export default _default;
|