import { DropdownProps } from 'antd';
import { FC } from 'react';
import { DROPDOWN } from '../../Types';
export interface IDropdown {
    ctype: typeof DROPDOWN;
    props: DropdownProps;
}
declare const Dropdown: FC<IDropdown>;
export default Dropdown;
