export interface ListSelectOptionModel { value: any; label?: string; hint?: string; } export interface ListSelectModel { formControlName?: string; required?: boolean; id?: string; currentlyActiveOption?: number; options?: ListSelectOptionModel[]; } export declare const LIST_SELECT_DEFAULTS: ListSelectModel;