import React from 'react'; import { ViewProps } from 'react-native'; export interface DropdownOption { label: string; value: string; } export interface SingleSelectDropdownProps extends ViewProps { label?: string; disabled?: boolean; caption?: string; options: DropdownOption[]; onSelect: (item: DropdownOption) => void; selectedValue?: DropdownOption; placeholder?: string; className?: string; } export declare const SingleSelectDropdown: React.FC; //# sourceMappingURL=SingleSelectDropdown.d.ts.map