import { ReactElement } from 'react'; import { Type } from './styles'; declare type DropdownItemProps = { children: string; onClick: (event: React.MouseEvent) => void; type?: Type; icon?: ReactElement; }; export declare function DropdownItem({ children, onClick, type, icon, }: DropdownItemProps): JSX.Element; export {};