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