import { GuidValue } from "@omnia/fx/models"; import { ShapeTemplate } from "../models"; export declare class ShapeTemplateService { private multilingualStore; private httpClient; constructor(); getAllShapeTemplates: () => Promise; getShapeTemplateById: (id: GuidValue) => Promise; addOrUpdateShapeTemplateItem: (shapeTemplate: ShapeTemplate) => Promise; deleteShapeTemplate: (id: GuidValue) => Promise; private generateShapeTemplatesMultilingualText; }