import React from 'react'; type Item = { label: string; value: string; }; export interface DropdownMobileProps { options: Item[]; value?: Item; onChange?: (value: Item) => void; disabled?: boolean; dropdownTitle?: string; placeholder?: string; fullWidth?: boolean; ButtonProps?: React.ButtonHTMLAttributes; isCloseable?: boolean; } declare const DropdownMobile: ({ options, value, onChange, disabled, dropdownTitle, placeholder, fullWidth, ButtonProps, isCloseable, }: DropdownMobileProps) => import("react/jsx-runtime").JSX.Element; export default DropdownMobile; //# sourceMappingURL=index.d.ts.map