import { AbstractControl, FormControlState } from "@angular/forms"; import { Observable } from "rxjs"; type ExcludeFormControlState = T extends FormControlState ? never : T; export declare function withStartValue(control: AbstractControl>): Observable>; export {};