import { FieldNode } from './fieldNode.js'; import { FormContext } from '../builder.js'; import { Field } from '../fields/index.js'; export declare class ObjectNode extends FieldNode { private _children; constructor(ctx: FormContext, field: Field, children?: (VNode | null)[]); options(): { name: string; type: string; class: string[]; }; protected children(): VNode[]; }