import type { CSSProperties, ReactElement } from "react";
type FormProps = {
    style?: CSSProperties;
    children: ReactElement | ReactElement[];
    onSubmit: (formState: Record<string, any>) => void;
    HTMLValidate?: boolean;
    showSubmitBtn?: boolean;
    theme?: "light" | "dark";
};
declare function Form({ style, children, onSubmit, HTMLValidate, showSubmitBtn, theme, }: FormProps): import("react/jsx-runtime").JSX.Element;
export default Form;
