import type { FormHTMLAttributes } from 'react';
export type FormProps = FormHTMLAttributes & {
disabled?: boolean;
readOnly?: boolean;
};
export declare const Form: import("react").ForwardRefExoticComponent & {
disabled?: boolean;
readOnly?: boolean;
} & import("react").RefAttributes>;