/// declare class SelectKitchenSinkController { selectedDisabled: any[]; selectedPlaceholder: any[]; selectedComboPlaceholder: any[]; selectedArray: { value: string; label: string; }[]; selectedObject: { value: string; label: string; }; selectedNumber: any; selectedCombo: string[]; selectedFilter: any[]; selectedFilterError: any[]; selectedComboSearch: any[]; selectedComboFilter: any[]; selectedCustomLabel: any[]; selectedSecondaryLabel: any[]; selectedWarn: any[]; selectedError: any[]; selectedErrorWarn: any[]; nestedSelect: any; selectedDynamicWarn: any; selectedDynamicWarnBool: any; selectedDynamicError: any; selectedDynamicErrorBool: any; selectedMulti: any[]; selectedMultiFilter: any[]; selectedMultiPlaceholder: any[]; selectedOnChange: any; selectedRefresh: any; availableNums: any[]; isWarn: string; isWarnBool: boolean; isError: string; isErrorBool: boolean; classPresent: boolean; comboOptions: string[]; placeholder: string; placeholderCombo: string; placeholderMulti: string; placeholderFilter: string; placeholderOnChange: string; placeholderRefresh: string; inputPlaceholderFilter: string; inputPlaceholderError: string; inputPlaceholderOnChange: string; inputPlaceholderRefresh: string; checkWarn(): void; loadNums(pattern: any): void; addNumber(phoneNum: any): void; selectNumberOptions: number[]; selectNumOptions: { value: string; label: string; }[]; selectOptions: { value: string; label: string; }[]; selectMultiOptions: { value: string; label: string; isSelected: boolean; }[]; selectMultiOptions2: { value: string; label: string; isSelected: boolean; }[]; selectOptionsCustom: { code: string; name: string; }[]; repeatOptions: { label: string; name: string; value: number; }[]; nestedOptions: ({ label: string; name: string; action: string; value: string; childOptions?: undefined; } | { label: string; name: string; action: string; value: string; childOptions: { label: string; name: string; value: number; }[]; })[]; } export declare class SelectKitchenSink implements angular.IComponentOptions { static selector: string; static bindings: {}; static controller: typeof SelectKitchenSinkController; static template: string; } export {};