/// import CSS from 'csstype'; declare function DropdownSelector({ selection, onSelect, selections, selectionToText, margin, padding, width, height, backgroundColor, menuPadding, menuStyle, textStyle, menuBorderRadius, alignment, alignItems, selectionMargin, selectionPadding, selectionStyle, highlightColor, selectedToText }: { selection: string; selections: string[]; onSelect?: (selection: string) => void; selectionToText?: (selection: string) => string; selectedToText?: (selection: string) => string; margin?: string; padding?: string; width?: string; height?: string; backgroundColor?: string; borderRadius?: string; boxShadow?: string; menuPadding?: string; menuStyle?: CSS.Properties; textStyle?: CSS.Properties; menuBorderRadius?: string; alignment?: 'center' | 'right' | 'left'; alignItems?: string; selectionMargin?: string; selectionPadding?: string; selectionStyle?: CSS.Properties; highlightColor?: string; }): JSX.Element; export default DropdownSelector;