import { FC, ReactNode } from 'react'; interface DropDownProps { items: { icon: ReactNode; text: string; onClick: () => void; }[]; children: ReactNode; defaultPosition?: 'bottom' | 'top'; className?: string; } declare const DropDownMenu: FC; export default DropDownMenu;