import { AppState } from '../app';
export interface SidebarModalState {
    isOpen: boolean;
}
export declare const toggleSidebarModal: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"sidebarModal/toggleSidebarModal">;
export declare const selectSidebarModal: (state: AppState) => SidebarModalState;
export declare const sidebarModalReducer: import("redux").Reducer<SidebarModalState, import("redux").AnyAction>;
