import { EventEmitter, OnInit, TemplateRef } from '@angular/core'; import { atInputSize } from '../input'; export declare class SwitchComponent implements OnInit { _value: boolean; checkText: string | TemplateRef; unCheckText: string | TemplateRef; disabled: boolean; private _atSize; readonly change: EventEmitter; atSize: atInputSize; readonly CheckIsString: boolean; readonly UncheckIsString: boolean; constructor(); ngOnInit(): void; onChange: any; onTouched: any; writeValue(value: any): void; registerOnChange(fn: (_: any) => {}): void; registerOnTouched(fn: () => {}): void; switch(): void; }