import type { NotifyPayload, NotixResponse } from './types'; interface FormMeta { title?: string; fieldsCount: number; } type OnSubmit = (payload: NotifyPayload, meta: FormMeta) => void; export declare function initFormCapture(onSubmit: OnSubmit, root: Element | Document, debug: boolean, onCapture?: (response: NotixResponse, payload: NotifyPayload) => void): void; export declare function destroyFormCapture(): void; export {};