import { FunctionComponent } from 'react'; type Props = { mapName?: (param: string) => string; options: string[]; setValue: (value: string) => void; value: string; }; export declare const PreferenceDropdown: FunctionComponent; export {};