import * as React from "react"; import type { DefinitionPropertyField, FieldValueType, ErrorType } from '@formitiva/core'; export interface FieldGroupProps { groupName: string; defaultOpen?: boolean; fields: DefinitionPropertyField[]; valuesMap: Record; handleChange: (fieldName: string, value: FieldValueType) => void; handleError?: (fieldName: string, error: ErrorType) => void; errorsMap?: Record; t: (key: string) => string; disabledByRef?: Record; } /** * Self-managing collapsible field group component with internal toggle state */ export declare const FieldGroup: React.NamedExoticComponent; //# sourceMappingURL=FieldGroup.d.ts.map