import * as React from "react"; import { FormComponent } from "../FormComponent"; interface FormProps { /** The CSS class name of the root element. */ className?: string; /** * The `FormComponent` being used to render the Form Elements within this Component. */ component: FormComponent; } export declare const formClasses: { body: string; footer: string; formElementContent: string; formElementTitle: string; formElementWithTitleBeside: string; header: string; main: string; root: string; row: string; }; declare const Form: ({ className, component }: FormProps) => React.JSX.Element | null; export default Form;