import { type BottomSheetModal } from '@gorhom/bottom-sheet'; import * as React from 'react'; import type { FieldValues } from 'react-hook-form'; import type { InputControllerType } from './input'; export type OptionType = { label: string; value: string | number; }; type OptionsProps = { options: OptionType[]; onSelect: (option: OptionType) => void; value?: string | number; testID?: string; }; export declare const Options: React.ForwardRefExoticComponent>; export interface SelectProps { value?: string | number; label?: string; disabled?: boolean; error?: string; options?: OptionType[]; onSelect?: (value: string | number) => void; placeholder?: string; testID?: string; } interface ControlledSelectProps extends SelectProps, InputControllerType { } export declare const Select: (props: SelectProps) => React.JSX.Element; export declare function ControlledSelect(props: ControlledSelectProps): React.JSX.Element; export {}; //# sourceMappingURL=select.d.ts.map