import { EventEmitter } from '@angular/core'; export interface Option { label?: string; value: string; children?: Option[]; icosDisabled?: boolean; active?: boolean; } export declare class IcosCascaderPoprs { disabled: boolean; icosDisabled: boolean; size: string; placeholder: string; options: Option[]; clearable: boolean; allLevels: boolean; changeOnSelect: boolean; model: string[]; modelChange: EventEmitter; }