import type { FieldGroup } from './form-layout'; /** * Section chrome for `mode: "sections"`. Wraps a group's (already gridded) * fields in a titled block. * - The default/orphan group renders with NO chrome, so a layout-less form (one * default group) is visually identical to the legacy flat list. * - A section whose `collapsed` is defined (true/false) is rendered COLLAPSIBLE, * starting collapsed when `collapsed === true`. A section with no `collapsed` * flag renders as a plain, always-open titled block. */ export declare function FieldSection({ group, children, }: { group: FieldGroup; children: React.ReactNode; }): import("react").JSX.Element; /** * Step indicator for `mode: "steps"`: the platform's ProcessStepper (numbered * circles with a check when done, label underneath, connectors) plus a * "Paso i/n ยท " caption and the step's description. Same component the * process modals (workshop, warehouse) use, so a model wizard, an action wizard * and a process modal read the same. */ export declare function WizardProgress({ groups, stepIndex, stepLabel, onStepClick, }: { groups: FieldGroup<unknown>[]; stepIndex: number; stepLabel?: string; /** Jump back to an already completed step (forward jumps are never offered). */ onStepClick?: (index: number) => void; }): import("react").JSX.Element; //# sourceMappingURL=form-layout-ui.d.ts.map