/*** * @file: * @Date: 2020-06-30 09:34:20 * @author: manyao.zhu */ import { EventEmitter } from '@angular/core'; import { SettingsService } from '@ithinkdt/shared/browser'; import { DictionaryService } from '@ithinkdt/shared/dict'; import { ControlValueAccessorService } from '../../control-value-accessor.service'; export declare class FormCheckboxComponent extends ControlValueAccessorService { private settingsSrv; private dictSrv; value: any; list: any; checkList: any[]; size: string; prop: string; type: string; otherProp: string; bindKey: string; dictCode: string; checkboxOther: any; otherValue: string; valueChange: EventEmitter; dictConf: any; constructor(settingsSrv: SettingsService, dictSrv: DictionaryService); onTouchedCallback: () => void; onChangeCallback: (_: any) => void; isDisabled: boolean; onBlur(): void; setList(code: string): void; writeValue(value: any): void; checkboxValueChange(checkbox: string[]): void; checkboxChanges(evt: any): void; inputBlur(): void; onKeyup(): void; inputChange(evt: any): void; }