import HtmlEndpoint from './../../src/endpoint/html'; interface Input { readonly id: string | undefined; readonly fields: Record | undefined; } declare class HtmlInstanceFormEndpoint extends HtmlEndpoint { protected process(): Promise; private fetchTypeNode; private renderFormForTypeNode; private prepareFieldInputs; private prepareFieldInputForKey; private fetchNodeForUrl; private fetchInstanceListForTypeNode; private getDraftValueForFieldKey; private getDraftFieldValues; private getDraftId; } export default HtmlInstanceFormEndpoint;