import { PropsWithChildren, ReactNode } from "react"; declare function Drop({ children }: PropsWithChildren): JSX.Element; declare function DropTrigger(props: PropsWithChildren): JSX.Element; declare function DropMenu(props: PropsWithChildren): JSX.Element; declare function DropItem({ disable, withDivider, className, onClick, ...props }: PropsWithChildren<{ withDivider?: boolean; disable?: boolean; icon?: ReactNode; description?: string; onClick?: any; className?: string; }>): JSX.Element; declare function DropSection(props: PropsWithChildren<{ title: string; }>): JSX.Element; declare const _default: { Container: typeof Drop; Item: typeof DropItem; Section: typeof DropSection; Trigger: typeof DropTrigger; Menu: typeof DropMenu; }; export default _default;