interface OptionT { label: string; value: string; } interface DSMobileDropdownMenuPropsT { placeholder: string; value: string; options: OptionT[]; title: string; itemsProps: { label?: string; leftProp?: JSX.Element; isGroup?: boolean; isMulti?: boolean; singleSelect?: boolean; isItemSelected?: (opt: OptionT) => boolean; onClick?: (opt: OptionT, e: any) => void; }; } declare const DSMobileDropdownMenu: { ({ placeholder, options, title, value, itemsProps, }: DSMobileDropdownMenuPropsT): JSX.Element; displayName: string; }; declare const DSMobileDropdownMenuWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent; export { DSMobileDropdownMenu, DSMobileDropdownMenuWithSchema };