export type Loading = "eager" | "lazy"; export type LazyLoaderSettings = { cssDir?: string; jsDir?: string; default?: "eager" | "lazy"; lazierCSS?: boolean; }; declare const configure: (settings?:Partial) => void; declare const update: () => void; declare const mount: (tagName:string, constructor?: CustomElementConstructor) => Promise; declare const css: (files:string|string[]) => Promise;