export interface CurrentHostThemeState { hostThemeSetting: string; colorScheme?: 'light' | 'dark'; isHighContrast?: boolean; } export declare const getCurrentHostThemeSetting: () => string; export declare const getCurrentHostThemeState: () => CurrentHostThemeState; export declare const setCurrentHostThemeSetting: (hostThemeSetting: string) => void; export declare const setCurrentHostThemeState: (state: CurrentHostThemeState) => void; //# sourceMappingURL=hostThemeSetting.d.ts.map