import { MessageType } from '../types/interfaces';
interface State {
    type: MessageType.GET_MUTE_FOR_ALL | MessageType.SET_MUTE_FOR_ALL;
    muteForAll: boolean;
}
export declare const changeMuteForAll: import("@reduxjs/toolkit").ActionCreatorWithPayload<State, string>;
declare const storeMuteForAll: import("@reduxjs/toolkit").EnhancedStore<State, import("redux").AnyAction, [import("redux-thunk").ThunkMiddleware<State, import("redux").AnyAction, undefined>]>;
export default storeMuteForAll;
