import './form.style.css'; import { Box } from '..'; import { BoxExtendedContentType } from '../box/Box'; import { IdType } from '../common/Types'; import { Editor, EditorAttributes, EditorEventTypes } from '../editors/Editor'; import { Vnode } from 'mithril'; declare type FormAttributes = BoxExtendedContentType; export declare class Form extends Box { constructor(attrs?: FormAttributes); getAllEditors(): Editor, EditorEventTypes>[]; getEditor(id: IdType): Editor, EditorEventTypes> | undefined; setDisabled(disabled: boolean): void; getValue(): Record; setValue(value: Record): void; clear(): void; validate(): boolean; view(): Vnode; } export {}; //# sourceMappingURL=Form.d.ts.map