import { ThemeStyling } from "@omnia/fx/models"; import { Store } from "@omnia/fx/stores"; export declare class ActivityFeedStore extends Store { private themeStyling; private customStyling; protected onActivated(): void; protected onDisposing(): void; getters: { themeStyling: () => ThemeStyling; customStyling: () => boolean; }; /** * Implementation of mutations */ mutations: { setThemeStyling: import("@omnia/fx/stores").StoreMutation<(themeStyling: ThemeStyling, customStyling: boolean) => void, (themeStyling: ThemeStyling, customStyling: boolean) => import("@omnia/fx-models/Messaging").IMessageBusSubscriptionHandler>; }; actions: {}; }