import { AppState } from '../app'; export interface IdleState { hasOrder: boolean; isIdle: boolean; isDebug?: boolean; } export declare const resetIdleState: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"idle/resetIdleState">, setHasOrder: import("@reduxjs/toolkit").ActionCreatorWithPayload, setIsIdle: import("@reduxjs/toolkit").ActionCreatorWithPayload, setIsDebug: import("@reduxjs/toolkit").ActionCreatorWithPayload; export declare const selectIdleState: (state: AppState) => IdleState; export declare const selectIsDebug: (state: AppState) => boolean | undefined; export declare const idleReducer: import("redux").Reducer;