import { CSSProperties } from 'react'; export type DropdownItem = { id?: number | string; name: string; value: string; }; type DropdownProps = { desktopMode?: boolean; hideLabel?: boolean; width?: string; onChange?: (newValue: string) => void; style?: CSSProperties; options?: any[]; label?: string; value?: any; placeholder?: string; open?: boolean; fullWidth?: boolean; disabled?: boolean; getOptionLabel?: (option: any) => string; }; export default DropdownProps; //# sourceMappingURL=type.d.ts.map