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