import type { TypedUseSelectorHook } from "react-redux"; import type { SublayState } from "./sublayReducers"; /** * Typed dispatch hook for Sublay. * Works in both standalone and integration modes. */ export declare const useSublayDispatch: () => import("@reduxjs/toolkit").ThunkDispatch<{ sublay: { auth: import("./slices/authSlice").AuthState; appNotifications: import("./slices/appNotificationsSlice").AppNotificationsState; collections: import("./slices/collectionsSlice").CollectionsState; user: import("./slices/userSlice").UserState; entityLists: import("./slices/entityListsSlice").EntityListsState; spaceLists: import("./slices/spaceListsSlice").SpaceListsState; accounts: import("./slices/accountsSlice").AccountsState; chat: import("..").ChatState; tables: import("./slices/tablesSlice").TablesState; }; sublayApi: import("@reduxjs/toolkit/query").CombinedState<{}, "AppNotification" | "Collection" | "CollectionEntities" | "User" | "Entity" | "Space" | "TableRow" | "NotificationPreferences", "sublayApi">; }, undefined, import("@reduxjs/toolkit").UnknownAction> & import("@reduxjs/toolkit").Dispatch; /** * Typed selector hook for Sublay state. * Works in both standalone and integration modes. * * State is always accessed via the 'sublay' namespace. */ export declare const useSublaySelector: TypedUseSelectorHook<{ sublay: SublayState; }>;