import { DrawerProps } from 'antd';
import { FC } from 'react';
import { DRAWER, TComponentProps } from '../../Types';
interface IChildren extends Omit<DrawerProps, 'children'> {
    children: TComponentProps[];
}
export interface IDrawer {
    ctype: typeof DRAWER;
    props: IChildren;
}
declare const Drawer: FC<IDrawer>;
export default Drawer;
