import { MedosTheme, PartialTheme } from "../core/theme/types"; import { ThemeName } from "../core/theme/themes"; export declare function resolveTheme(theme?: ThemeName | MedosTheme | PartialTheme): MedosTheme; export declare function injectThemeIntoContainer(container: HTMLElement, theme?: ThemeName | MedosTheme | PartialTheme, prefix?: string): void; export declare function createWidgetStyleTag(containerId: string, theme?: ThemeName | MedosTheme | PartialTheme, prefix?: string): HTMLStyleElement; export declare function updateWidgetTheme(container: HTMLElement, theme: ThemeName | MedosTheme | PartialTheme, prefix?: string): void;