import { Context } from '@innet/jsx'; import { type FormActionHandle, type FormErrorHandle, type FormInvalidHandle, type FormNotificationHandle, type FormProps } from './types'; export declare const formErrorHandler: Context; export declare const formInvalidHandler: Context; export declare const formActionHandler: Context; export declare const formNotificationHandler: Context; export declare function Form({ loading, action, notification, method, onsuccess, onerror, onreset, onsubmit, validation: validationProp, oninvalid, ref, ...props }?: FormProps): any;