export function setDarkModeClassName(darkMode: any, classList: any): void; export function DarkMode(superClass: any): { new (): { [x: string]: any; darkMode: string; updated(changed: any): void; }; [x: string]: any; readonly properties: { /** The theme of the component, valid options are `disabled`, `auto` & `active`. The auto strategy uses the `prefers-color-scheme` media feature under the hood, it will not listen for color changes when set to auto */ darkMode: { type: StringConstructor; }; }; }; export default DarkMode;