import type { ResolvedTheme, ThemeMode } from './ThemeContext'; type ThemeColorSpace = 'p3' | 'srgb'; type SyncThemeToDomOptions = { backgroundColor?: string; colorSpace?: ThemeColorSpace; resolvedTheme: ResolvedTheme; }; declare function resolveThemeMode(mode: ThemeMode): ResolvedTheme; declare function syncThemeToDom({ backgroundColor, colorSpace, resolvedTheme, }: SyncThemeToDomOptions): void; export { resolveThemeMode, syncThemeToDom }; export type { ThemeColorSpace };