import { IAction } from '@rh-support/types/shared'; export declare enum GlobalAlertMessageReducerConstants { toggleSubscriptionAbuseModalOpen = "toggleSubscriptionAbuseModalOpen" } export interface IGlobalAlertMessageState { isSubscriptionAbuseModalOpen: boolean; } export interface IGlobalAlertMessagePayloadType extends IGlobalAlertMessageState { } type IActionType = IAction; export type GlobalAlertMessageReducerDispatchType = (value: IActionType) => void; export declare const initialGlobalAlertMessageState: IGlobalAlertMessageState; export declare const globalAlertMessageReducer: (state: IGlobalAlertMessageState, action: IActionType) => IGlobalAlertMessageState; export declare const toggleSubscriptionAbuseModalOpen: (dispatch: GlobalAlertMessageReducerDispatchType) => void; export {}; //# sourceMappingURL=GlobalAlertMessageReducer.d.ts.map