import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "form"; export interface InnerFormProps extends InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * Whether or not the form elements are disabled. */ disabled?: boolean; /** * Whether or not the form take up the width of its container. */ fluid?: ResponsiveProp; } export declare function InnerForm(props: InnerFormProps): JSX.Element; export declare namespace InnerForm { var defaultElement: string; } /** * Forms are commonly used to provide user interaction in web applications. * * [Documentation](https://orbit.sharegate.design/?path=/docs/form--vertical-layout) */ export declare const Form: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type FormProps = ComponentProps; export {};