import Template from './../../../src/template'; import FieldInput from './../../../src/template/page/instance-form/type/field-input'; interface Input extends FieldInput { readonly index: number; } declare class FieldRowTemplate extends Template { protected getHtml(): string; private getKeyHtml; private getTypeHtml; private getInstanceListHtml; private getInstanceOptionsHtml; private getExplicitValueHtml; private getFieldKey; private getTypeUrl; private getTypeLabel; private getIndex; private getTypeNode; private hasInstanceList; private getInstanceList; } export default FieldRowTemplate;