import Template from './../../../template'; import FieldInput from './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;