import { IThemeModeType, IThemePrimaryColorType } from './type'; export declare const modeList: readonly ["light", "dark"]; export declare const themeList: readonly ["blue", "green", "purple", "yellow", "blue-red", "blue-green", "red-8"]; export declare const themePrimaryChange: (domElement: HTMLElement, nextType: IThemePrimaryColorType) => "blue" | "green" | "purple" | "yellow" | "blue-red" | "blue-green" | "red-8" | Error; export declare const themeModeChange: (domElement: HTMLElement, nextMode: IThemeModeType) => "light" | "dark" | Error;