import { ReactNode } from 'react'; export declare const DEFAULT_CLASS = "hods-form-container"; interface ContainerProps { container: { className?: string; components?: { fieldId?: string; type?: string; }[]; fieldId?: string; full_path?: string; id?: string; readonly?: boolean; title?: string; }; formData?: object; fullPath?: string; onChange?: Function; onTopLevelChange?: Function; value?: ReactNode | { id?: string; } | object[]; wrap?: boolean; } declare const Container: ({ container, value, formData, onChange, wrap, onTopLevelChange, ...attrs }: ContainerProps) => import("react/jsx-runtime").JSX.Element; export default Container;