import * as React from "react"; import { TextStyle, ViewStyle } from "react-native"; export interface SelectProps { dropDownContainerStyle?: ViewStyle; errorTextStyle?: TextStyle; itemLabel?: string; itemValue?: string | number; items: any[]; placeholderTextColor?: string; searchPlaceHolder?: string; searchable?: boolean; searchCallback?: (searchText: string) => void; } export declare const Select: React.FC;