import { IManifest } from "./manifest.interface"; import { Marker } from "./marker"; export declare class Microservice { readonly name: string; readonly html: string; readonly css: string[]; readonly js: string[]; marker: Marker; manifest: IManifest; isLoaded: boolean; private _name; private _html; private _css; private _js; constructor(marker: Marker); setName(name: string): void; setHtml(html: string): void; setCss(assets: string[]): void; setJs(assets: string[]): void; setManifest(manifest: IManifest): void; }