export declare class ScriptLoader { scripts: string[]; contentRegistry: { [key: string]: string; }; constructor(); loadScripts(): Promise<{ [key: string]: string; }>; getScript(scriptName: string): Promise; flush(): void; getScripts(): { [key: string]: string; }; } declare const scriptLoader: ScriptLoader; export { scriptLoader };