export interface TOption {
    label: string;
    value: string;
    disabled?: boolean;
}
export interface TSelect {
    model: string | null | TOption;
    width?: string;
    label?: string;
    notSelected?: string;
    hideNotSelect?: boolean;
    options: Array<TOption>;
    disabled?: boolean;
    error?: string;
    hint?: string;
}
