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