export declare function Select(props: SelectProps): JSX.Element; export interface SelectProps { style?: any; labelStyle?: any; label?: string; error?: string; value: string; onChange: (value: string) => void; items: { label: string; value: string; }[]; disabled?: boolean; textStyle?: any; invalidStyle?: any; }