export type themeScheme = "light" | "dark";
export interface iThemeInfo {
    auto: boolean;
    scheme: themeScheme;
}
export declare function setThemeInfo(themeInfo: iThemeInfo): void;
export declare function useTheme(): iThemeInfo;
