import { FormInterface } from "./types"; /** * Get the current active form */ export declare function getActiveForm(): FormInterface | null; /** * Set the current active form */ export declare function setActiveForm(form: FormInterface): void; /** * Remove the given form from being active form */ export declare function removeActiveForm(form: FormInterface): void; /** * Get form by the given id */ export declare function getForm(formId: string): FormInterface | null; /** * Add the given form to the active forms */ export declare function addToFormsList(form: FormInterface): void; /** * Remove the given form from the active forms */ export declare function removeFromFormsList(form: FormInterface): void; //# sourceMappingURL=active-form.d.ts.map