import { NgDocStoreService } from '@ng-doc/app/services/store'; import { Subject, Observable } from 'rxjs'; import * as i0 from '@angular/core'; /** * Service for managing themes. */ declare class NgDocThemeService { protected readonly document: Document; protected readonly store: NgDocStoreService; protected readonly change$: Subject; protected readonly documentElement: HTMLElement; /** * Returns the current theme. */ get currentTheme(): string | null; themeChanges(): Observable; /** * Sets the theme by id. * @param id - Theme id. If not provided, the theme will be removed. */ set(id?: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export { NgDocThemeService };