import { BaseService } from './services/abstract/baseService'; import { UiStyle } from './configuration/models/uiStyle'; import { IStorytellerTheme } from './configuration/models/theme/storytellerTheme'; import { IUiTheme } from './configuration/models/theme/uiTheme'; import { Subset } from '../types/subset'; declare class StorytellerThemeService extends BaseService { static sharedInstance: StorytellerThemeService; protected logTag: string; uiStyle: UiStyle; private currentTheme_; private theme_; get currentTheme(): IStorytellerTheme; set theme(theme: Subset); get theme(): Subset; buildTheme(): void; } declare const _default: StorytellerThemeService; export default _default;