import { InjectionToken, OnDestroy, OnInit } from '@angular/core'; import { BehaviorSubject } from 'rxjs'; import { ClrLabel } from '../common/label'; import { ClrCheckbox } from './checkbox'; import * as i0 from "@angular/core"; export declare const IS_TOGGLE: InjectionToken>; export declare function isToggleFactory(): BehaviorSubject; export declare const IS_TOGGLE_PROVIDER: { provide: InjectionToken>; useFactory: typeof isToggleFactory; }; export declare class ClrCheckboxWrapper implements OnInit, OnDestroy { label: ClrLabel; checkbox: ClrCheckbox; toggle: boolean; private subscriptions; constructor(toggleService: BehaviorSubject); ngOnInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }