import { RoomList, Banneds } from '../types/interfaces';
interface State {
    userList: {
        muteds: RoomList[any];
        adminMuteds: RoomList[any];
        banneds: Banneds[any];
        askeds: RoomList[any];
    };
}
export declare const changeUserList: import("@reduxjs/toolkit").ActionCreatorWithPayload<State, string>;
declare const storeUserList: import("@reduxjs/toolkit").EnhancedStore<State, import("redux").AnyAction, [import("redux-thunk").ThunkMiddleware<State, import("redux").AnyAction, undefined>]>;
export default storeUserList;
