/*** * @file: * @author: chengyuntao * @Date: 2020-05-25 17:48:30 */ import { EventEmitter } from '@angular/core'; import { ControlValueAccessorService } from '../../control-value-accessor.service'; export declare class FormSwitchComponent extends ControlValueAccessorService { value: any; loading: any; size: any; prop: string; checkedContent: string; unCheckedContent: string; associate: any; valueChange: EventEmitter; updateChange(): void; writeValue(value: any): void; selectAssociate(option?: { [key: string]: any; }): void; setAssociateData(option: { [key: string]: any; }, associate: any): void; }