import { SelectType } from "./select.model"; export interface SelectConfig { type: SelectType; autoClose: boolean; selectedClass: string; color?: string; arrowUpIcon: string; arrowDownIcon: string; allowFiltering: boolean; filterPlaceholder: string; allowClear: boolean; clearIcon: string; noOptions: string; textField: string; valueField: string; } export declare const selectConfig: SelectConfig;