import { GuidValue, Identity } from "@omnia/fx/models"; import { DocumentType } from "../../models"; export declare class DocumentTypeService { private httpClient; constructor(); refreshServerCache: () => Promise; getByIds: (ids: Array) => Promise>; getChildren: (parentId?: GuidValue) => Promise>; getDocumentTypeTermSetId: () => Promise; create: (documentType: DocumentType) => Promise; update: (documentType: DocumentType) => Promise; remove: (id: GuidValue) => Promise; getUsersInApproverGroup: (docTypeId: GuidValue, webUrl: string) => Promise; getByDocumentTemplateId: (documentTemplateId: GuidValue) => Promise>; }