import { AppState } from '../../app'; import { GiftCardPurchase, GiftCards, RequestError, RequestStatus } from '@open-tender/types'; export interface CustomerGiftCardsState { entities: GiftCards; error: RequestError; loading: RequestStatus; lookup: { [key: number | string]: number; }; } export declare enum CustomerGiftCardsActionType { FetchCustomerGiftCards = "customer/fetchCustomerGiftCards", RemoveCustomerGiftCard = "customer/removeCustomerGiftCard", AddCustomerGiftCard = "customer/addCustomerGiftCard", AssignCustomerGiftCard = "customer/assignCustomerGiftCard", AssignCustomerGiftCardOther = "customer/assignCustomerGiftCardOther", UpdateCustomerGiftCard = "customer/updateCustomerGiftCard" } export declare const fetchCustomerGiftCards: import("@reduxjs/toolkit").AsyncThunk | undefined; extra?: unknown; serializedErrorType?: unknown; pendingMeta?: unknown; fulfilledMeta?: unknown; rejectedMeta?: unknown; }>; export declare const updateCustomerGiftCard: 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 removeCustomerGiftCard: 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 addCustomerGiftCard: 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 assignCustomerGiftCard: 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 assignCustomerGiftCardOther: 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 resetCustomerGiftCards: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"giftCards/resetCustomerGiftCards">, resetCustomerGiftCardsError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"giftCards/resetCustomerGiftCardsError">, setCustomerGiftCards: import("@reduxjs/toolkit").ActionCreatorWithPayload; export declare const selectCustomerGiftCards: (state: AppState) => CustomerGiftCardsState; export declare const customerGiftCardsReducer: import("redux").Reducer;