import * as React from "react"; export interface Props { className?: string; compact?: boolean; placeholder?: string; defaultValue?: string; fullWidth?: boolean; helperText?: string; hideLabel?: boolean; label: string; name?: string; options: any; id: string; errors?: string[]; required?: boolean; nativeRequired?: boolean; multiSelect?: boolean; inputRef?: any; onChange?: any; value?: string; } export interface OptionProps { label?: string; value?: string; disabled?: boolean; } declare const Select: React.FC; export default Select;