import { FormType, FormV2 } from './FormV2';
import { List } from '../List';
export declare class Forms {
    forms: List<FormV2>;
    updated: number;
    constructor();
    init: (form: FormType) => FormV2 | undefined;
    deleteForm: (formId: string) => void;
    getForm: (formId: string) => FormV2 | undefined;
    getFormData: (formId: string) => {} | undefined;
}
export declare const forms: Forms;
