import HtmlEndpoint from './../html'; interface HtmlDraftField { readonly key: string; readonly value: string[]; } interface Input { readonly id: string | undefined; readonly fields: HtmlDraftField[] | undefined; } declare class HtmlCreateTypeEndpoint extends HtmlEndpoint { protected process(): Promise; private getId; private getDraftFields; } export default HtmlCreateTypeEndpoint;