/// import { Colors } from "../../../foundations/foundation-types"; import { ButtonMinimalProps } from "../../ButtonMinimal"; interface Item extends ButtonMinimalProps { title: string; description: string; hoverColor?: keyof Colors; } interface Props { item: Item; index: number; getItemProps: (options: any) => any; } declare function DropDownItem({ item, index, getItemProps }: Props): JSX.Element; export default DropDownItem;