import './AntGridLayout.less'; import { RowProps } from 'antd'; import { EditorInBorderForChildrenProps, PropsTypes } from '@orca-fe/deye-typings'; export interface AntGridLayoutProps extends RowProps { rowLength?: number; cols?: ArrayLike; __solidChildrenLength?: unknown; } declare const AntGridLayout: { (props: AntGridLayoutProps): JSX.Element; title: string; icon: JSX.Element; isContainer(props: any): number; propsDef: PropsTypes[]; customEditorInBorderForChildren: (props: EditorInBorderForChildrenProps) => JSX.Element; }; export default AntGridLayout;