import { FormControl, FormGroup } from '@angular/forms'; import { Observable } from 'rxjs'; import { Connectable } from '../connect-model'; /** Connects the value of a FormControl with a Connectable. */ export declare function connectFormValue(connectable: Connectable, form: FormControl | FormGroup, destroyed$?: Observable): void; /** Connects the errors of a FormControl with a Connectable. */ export declare function connectFormError(connectable: Connectable, form: FormControl | FormGroup, destroyed$?: Observable): void;