import "./Field.css"; import { ComponentProps, ElementType, ForwardedRef, ReactNode } from "react"; import { DomProps } from "../../shared"; export interface InnerGroupFieldProps extends DomProps { /** * Whether the field should display as "valid" or "invalid". */ validationState?: "valid" | "invalid"; /** * Whether or not the field show a required state. */ required?: boolean; /** * Whether or not the field take up the width of its container. */ fluid?: boolean; /** * An HTML element type or a custom React element type to render as. */ as?: ElementType; /** * React children. */ children: ReactNode; /** * @ignore */ forwardedRef: ForwardedRef; } export declare function InnerGroupField(props: InnerGroupFieldProps): JSX.Element; export declare const GroupField: import("../../shared").OrbitComponent; export declare type GroupFieldProps = ComponentProps;