import { Store } from "./Store"; export declare class FocusStore extends Store { private focusedElement; mutations: { setFocusedElement: import("./Store").StoreMutation<(element: any) => void, (element: any) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>; }; actions: { onFocus: import("./Store").StoreAction void, (result: void) => void, (failureReason: any) => void, () => Promise>; }; protected onActivated(): void; }