import { BehaviorSubject } from 'rxjs'; export declare const Theme: unique symbol; export declare const ThemeManager: unique symbol; export declare const DEFAULT_THEME = "default"; export interface Theme { id: string; label: string; color: string; priority: number; props: T; metadata: { [key: string]: any; }; } export interface ThemeManager { currentSubject: BehaviorSubject | undefined>; get(): Promise[]>; } //# sourceMappingURL=theme-protocol.d.ts.map