import type { CallspecUiTheme } from '../types'; export type AppliedUiTheme = { cssVars: Record; fontUrls: string[]; }; /** Pure: map branding theme fields to CSS custom properties (no DOM). */ export declare function applyUiTheme(theme: CallspecUiTheme | undefined): AppliedUiTheme; /** Apply theme CSS vars and inject webfont `` tags on a document. */ export declare function applyUiThemeToDocument(theme: CallspecUiTheme | undefined, doc?: Document): AppliedUiTheme;