import { Actions } from 'ngrx-forms'; import { RegisterForm, SetDocumentId, RegisterForms } from './forms.actions'; import { DxFormState } from './form-state'; /** * @deprecated use DxFormState */ export declare type FormState = DxFormState; export interface FirestoreFormsState { [formId: string]: FormState; } export declare const firestoreFormsInitialState: FirestoreFormsState; export declare function defaultBoxFnc(raw: RawForm): Form; export declare function applyFormStateDefaults(formId: any, formRegister: any): FormState; export declare function firestoreFormsReducer(state: FirestoreFormsState, action: Actions
| RegisterForm | SetDocumentId | RegisterForms): FirestoreFormsState;