import type { ViewStyle } from 'react-native'; interface SelectProps { value?: string | number | boolean | null; options?: unknown[]; placeholder?: string; label?: string; labelKey?: string; valueKey?: string; required?: boolean; disabled?: boolean; style?: ViewStyle; _tokens?: Record; onChange?: (value: string) => void; testID?: string; } export declare function Select({ value, options, placeholder, label, labelKey, valueKey, required, disabled, style, _tokens, onChange, testID }: SelectProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=select.d.ts.map