/// export interface DropdownValue { value: string; label: string; } export declare const ArrowIcon: () => JSX.Element; interface IProps { items: (string | DropdownValue)[]; onChange: (item: string) => void; title?: string; defaultValue?: string | DropdownValue; dataCy?: string; } export declare const Dropdown: (props: IProps) => JSX.Element; export {}; //# sourceMappingURL=Dropdown.d.ts.map