export interface SearchInputProps { value: string; onChangeValue: (value: string) => void; placeholder: string; accessibilityLabel: string; } /** * A single-line filter field for long pick lists. * * Uses gorhom's `BottomSheetTextInput`, so the screen hosting it must set * `keyboardAvoidEnabled` on `FlowSheet` — gorhom's native avoidance is inert * under `enableDynamicSizing` (see `useKeyboardHeight`). */ export declare function SearchInput({ value, onChangeValue, placeholder, accessibilityLabel, }: SearchInputProps): import("react").JSX.Element; //# sourceMappingURL=SearchInput.d.ts.map