import { AppState } from '../../app'; import { CustomerNotificationPrefs, CustomerNotificationPrefsCreate, NotificationArea, NotificationChannel, RequestError, RequestStatus } from '@open-tender/types'; export interface CustomerCommunicationPrefsState { entities: CustomerNotificationPrefs; error: RequestError; loading: RequestStatus; lookup: { [key: number | string]: number; }; } export declare enum CustomerCommunicationPrefsActionType { FetchCustomerCommunicationPreferences = "customer/fetchCustomerCommunicationPreferences", AddCustomerCommunicationPreference = "customer/addCustomerCommunicationPreference", RemoveCustomerCommunicationPreference = "customer/removeCustomerCommunicationPreference", SetCustomerCommunicationDefaultPreferences = "customer/setCustomerCommunicationDefaultPreferences" } export declare const fetchCustomerCommunicationPreferences: import("@reduxjs/toolkit").AsyncThunk | undefined; extra?: unknown; serializedErrorType?: unknown; pendingMeta?: unknown; fulfilledMeta?: unknown; rejectedMeta?: unknown; }>; export declare const addCustomerCommunicationPreference: import("@reduxjs/toolkit").AsyncThunk void) | undefined; }, { state: AppState; rejectValue: RequestError; dispatch?: import("redux").Dispatch | undefined; extra?: unknown; serializedErrorType?: unknown; pendingMeta?: unknown; fulfilledMeta?: unknown; rejectedMeta?: unknown; }>; export declare const removeCustomerCommunicationPreference: import("@reduxjs/toolkit").AsyncThunk void) | undefined; }, { state: AppState; rejectValue: RequestError; dispatch?: import("redux").Dispatch | undefined; extra?: unknown; serializedErrorType?: unknown; pendingMeta?: unknown; fulfilledMeta?: unknown; rejectedMeta?: unknown; }>; export declare const setCustomerCommunicationDefaultPreferences: import("@reduxjs/toolkit").AsyncThunk void) | undefined; }, { state: AppState; rejectValue: RequestError; dispatch?: import("redux").Dispatch | undefined; extra?: unknown; serializedErrorType?: unknown; pendingMeta?: unknown; fulfilledMeta?: unknown; rejectedMeta?: unknown; }>; export declare const resetCustomerCommunicationPreferences: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"communicationPreferences/resetCustomerCommunicationPreferences">, resetCustomerCommunicationPreferencesError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"communicationPreferences/resetCustomerCommunicationPreferencesError">, setCustomerCommunicationPreferences: import("@reduxjs/toolkit").ActionCreatorWithPayload; export declare const customerCommunicationPrefsReducer: import("redux").Reducer; export declare const selectCustomerCommunicationPreferences: (state: AppState) => CustomerCommunicationPrefsState;