/** * The wrapper around a nested group of fields (object, array, or union). At the * form root it lays children out in a plain stack; below the root it renders a * heading, an optional description, an optional error — the ERROR mark beside * the message, never a hue on its own — and the nested group surface. */ import type { ReactNode } from 'react'; export declare function FieldGroup({ heading, description, error, atRoot, children, }: { heading: string; description: string | undefined; error: string | undefined; atRoot: boolean; children: ReactNode; }): ReactNode; //# sourceMappingURL=field-group.d.ts.map