import { FormGroup } from '@angular/forms'; import { Immutable, Maybe } from '@fretve/global-types'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; /** Exposes form & state */ export declare class DynamicFormStore { private stateSubject; /** An observable of the formState */ state$: Observable>>>; get state(): Immutable>; form: FormGroup; constructor(); /** Set the input state causing the inputState observer to emit */ setState(state: Immutable>): void; static ɵfac: i0.ɵɵFactoryDeclaration, never>; static ɵprov: i0.ɵɵInjectableDeclaration>; }