import { EventEmitter } from '@angular/core'; import * as i0 from "@angular/core"; export declare class ToggleComponent { /** Unique id to be assigned to toggle */ id: string; /** Whether toggle checked or not */ checked: boolean | undefined; /** Title of toggle */ title: string; /** Placement of title w.r.t toggle */ placement: string | undefined; /** Emitting change in toggle */ toggle: EventEmitter; /** Disabling toggle */ disabled: boolean; /** Handling toggle value */ toggleValue(event: Event): void; /** Handling toggle value with title */ toggleUsingTitle(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }