import { LayoutProps } from 'antd';
import { FC } from 'react';
import { LAYOUT, TComponentProps } from '../../Types';
interface IChildren extends Omit<LayoutProps, 'children'> {
    children: TComponentProps[];
}
export interface ILayout {
    ctype: typeof LAYOUT;
    props: IChildren;
}
declare const Layout: FC<ILayout>;
export default Layout;
