import { ITheme } from './theme.interface'; export declare class ThemeStore { private themes; private defaultTheme?; addTheme(id: string, theme: ITheme): Promise; getThemeById(id: string): Promise; setDefaultTheme(themeId: string): Promise; getDefaultTheme(): Promise; } //# sourceMappingURL=theme.store.d.ts.map