//#region src/utils/hostTheme.d.ts
interface UpsertHostThemeStyleProps {
  shadowRoot: ShadowRoot;
  currentNode: HTMLStyleElement | undefined;
  themeCSS: string;
}
declare function upsertHostThemeStyle({
  shadowRoot,
  currentNode,
  themeCSS
}: UpsertHostThemeStyleProps): HTMLStyleElement | undefined;
declare function createHostThemeStyleNode(): HTMLStyleElement;
//#endregion
export { createHostThemeStyleNode, upsertHostThemeStyle };
//# sourceMappingURL=hostTheme.d.ts.map