interface State {
    id: string | number;
    muted: boolean;
}
export declare const changeMuted: import("@reduxjs/toolkit").ActionCreatorWithPayload<State, string>;
declare const storeMuted: import("@reduxjs/toolkit").EnhancedStore<State, import("redux").AnyAction, [import("redux-thunk").ThunkMiddleware<State, import("redux").AnyAction, undefined>]>;
export default storeMuted;
