import { CustomerIdentifier, CustomerIdentify, RequestError, RequestStatus } from '@open-tender/types'; import { AppState } from '../app'; export interface CustomerIdentifyState { data: CustomerIdentify | null; loading: RequestStatus; error: RequestError; } export declare enum CustomerIdentifyActionType { FetchCustomerIdentify = "CustomerIdentify/fetchCustomerIdentify" } export declare const fetchCustomerIdentify: import("@reduxjs/toolkit").AsyncThunk | undefined; extra?: unknown; serializedErrorType?: unknown; pendingMeta?: unknown; fulfilledMeta?: unknown; rejectedMeta?: unknown; }>; export declare const resetCustomerIdentify: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"customerIdentify/resetCustomerIdentify">; export declare const selectCustomerIdentify: (state: AppState) => CustomerIdentifyState; export declare const selectCustomerIdentified: (state: AppState) => CustomerIdentify | null; export declare const customerIdentifyReducer: import("redux").Reducer;