import { OnInit, OnDestroy } from '@angular/core'; import { ControlValueAccessor, NgControl } from '@angular/forms'; import { TypedFormGroup, Controls } from './forms-typed'; import { Subscription } from 'rxjs'; import * as i0 from "@angular/core"; export declare class ControlValueAccessorConnector = Controls> implements OnInit, OnDestroy, ControlValueAccessor { private directive; protected subs: Subscription; protected touchIsChildInitiated: boolean; form: TypedFormGroup; constructor(directive: NgControl, form: TypedFormGroup); ngOnInit(): void; ngOnDestroy(): void; protected onChange: (_: T) => void; protected onTouch: () => void; writeValue(obj: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(disable: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration, never>; static ɵdir: i0.ɵɵDirectiveDeclaration, never, never, {}, {}, never, never, false, never>; }