import { Store } from "@omnia/fx/stores"; import { ThemeDefinition } from "@omnia/fx-models"; import { Theming } from "@omnia/fx/ux"; export declare class EditingThemeStore extends Store { private themeDefinition; private theming; onActivated(): void; onDisposing(): void; /** Implementation of Getters */ getters: { getTheme: () => Theming; getThemeDefinition: () => ThemeDefinition; }; mutations: { setTheme: import("@omnia/fx/stores").StoreMutation<(themeDefinition: ThemeDefinition) => void, (themeDefinition: ThemeDefinition) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>; updateTheme: import("@omnia/fx/stores").StoreMutation<(themeDefinition: ThemeDefinition) => void, (themeDefinition: ThemeDefinition) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>; }; }