import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; import { ValidationState } from "../../input"; declare const DefaultElement = "div"; export interface InnerGroupFieldProps extends InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * Whether or not the field take up the width of its container. */ fluid?: ResponsiveProp; /** * Whether or not the field show a required state. */ required?: boolean; /** * Whether the field should display as "valid" or "invalid". */ validationState?: ValidationState; } export declare function InnerGroupField(props: InnerGroupFieldProps): JSX.Element; export declare namespace InnerGroupField { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/field--input) */ export declare const GroupField: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type GroupFieldProps = ComponentProps; export {};