import { FormContext } from '../builder.js'; import { Field } from '../fields/index.js'; import { Node } from './node.js'; export declare abstract class FieldNode extends Node { _field: Field; constructor(ctx: FormContext, field: Field); get field(): Field; fieldValue(): any; private _assocEnum; private _autofileValue; protected autofillValue(field: Field, val: any): void; abstract options(attrsOrProps: any): any; protected children(): VNode[]; createElem(): VNode; }