import { TemplateRef } from "@angular/core"; import { Subject } from "rxjs"; import { GlobalComponentModifier } from "../common-types"; import * as i0 from "@angular/core"; export declare class GlobalTemplateService { readonly templatesUpdated: Subject>; protected readonly globalTemplates: { [id: string]: TemplateRef; }; protected readonly componentModifiers: { [id: string]: GlobalComponentModifier; }; constructor(); get(id: string, component?: any): TemplateRef; add(id: string, template: TemplateRef): void; remove(id: string): void; addComponentModifier(id: string, modifier: GlobalComponentModifier): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }