import ISelectOption from './ISelectOption'

export default interface ISelect {
    options: Array<ISelectOption>
    name: string
    value: string
    label?: string
    required?: boolean
    disabled?: boolean
    validation?: string
    error?: string | null
    placeholder?: string,
    placeholderExternal?: boolean
    isValid?: boolean
}
