import type { PickerProps } from './Picker.types';
export declare const onOpen: (id: any) => void;
export declare const onClose: (id: any) => void;
export declare const Picker: <T>({ id, data, inputValue, searchable, loading, label, height, closeText, placeholderText, noDataFoundText, placeholderTextColor, setSelected, onSearch, searchInputProps, flatListProps, actionsSheetProps, renderListItem, style, }: PickerProps<T>) => JSX.Element;
