import React, { CSSProperties, ReactNode } from "react"; type FormProps = { as?: string; className?: string; labelWidth?: any; labelClassName?: string; controlClassName?: string; inline?: boolean; height?: any; width?: any; maxWidth?: any; maxHeight?: any; style?: CSSProperties | undefined; children?: ReactNode; onSubmit?: (e: any) => void; [x: string]: any; }; export declare const Form: ({ as, action, className, labelWidth, labelClassName, controlClassName, compact, inline, onSubmit, height, width, maxWidth, maxHeight, style, children, ...props }: FormProps) => React.JSX.Element; export {};