import type { ComponentProps, FC, PropsWithChildren } from 'react'; export type DropdownItemProps = PropsWithChildren> & { onClick?: () => void; icon?: FC>; }; export declare const DropdownItem: FC;