import type { LynxViewInstance } from './LynxViewInstance.js'; import type { DecodedTemplate } from '../../types/index.js'; export declare class TemplateManager { #private; constructor(); fetchBundle(url: string, lynxViewInstancePromise: Promise, overrideConfig?: Record): Promise; createTemplate(url: string): void; getTemplate(url: string): DecodedTemplate | undefined; getStyleSheet(url: string): any; } export declare const templateManager: TemplateManager;