import { AppState } from '../app'; export interface MiscState { isGroupOrder: boolean; thanxCode: any; topOffset: number | null; menuBrowse: boolean; menuSection: string | null; menuPath: string | null; } export declare const setIsGroupOrder: import("@reduxjs/toolkit").ActionCreatorWithPayload, setThanxCode: import("@reduxjs/toolkit").ActionCreatorWithPayload, setMenuBrowse: import("@reduxjs/toolkit").ActionCreatorWithPayload, setMenuPath: import("@reduxjs/toolkit").ActionCreatorWithPayload, setMenuSection: import("@reduxjs/toolkit").ActionCreatorWithPayload, setTopOffset: import("@reduxjs/toolkit").ActionCreatorWithPayload; export declare const selectIsGroupOrder: (state: AppState) => boolean; export declare const selectThanxCode: (state: AppState) => any; export declare const selectTopOffset: (state: AppState) => number | null; export declare const selectMenuBrowse: (state: AppState) => boolean; export declare const selectMenuSection: (state: AppState) => string | null; export declare const selectMenuPath: (state: AppState) => string | null; export declare const miscReducer: import("redux").Reducer;