import { FormContext } from '../builder.js'; import { FieldNode } from './fieldNode.js'; import { Node } from './node.js'; export declare class FieldWrap extends Node { fieldNode: any; constructor(ctx: FormContext, fieldNode: FieldNode); get field(): any; protected children(): VNode[]; createElem(): VNode; }