import { type CreateSliceOptions, type Slice, type SliceCaseReducers } from '@reduxjs/toolkit'; export type PersistedSlice = Slice & { p?: boolean; }; export declare function createStateSlice, Name extends string = string>(options: CreateSliceOptions & { persist?: boolean; }): PersistedSlice;