import { ProductPriceCurrency } from "../product/enums"; import { Wallet, WalletPaymentIntentPaymentMethod, WalletPaymentIntentRequest } from "./types"; export type WalletState = { wallet: Wallet | null; balance: number; currency: ProductPriceCurrency; balanceIsEnoughToOrderCampaign: boolean; billingDetailsAreComplete: boolean; walletIsLoading: boolean; paymentIntentRequestBody: WalletPaymentIntentRequest | null; paymentIntentClientSecret: string | null; paymentIntentSuccessCallbackUrl: string | null; topUpIsLoading: boolean; topUpAmount: number | null; topUpMinAmount: number; topUpMinAmountCurrency: ProductPriceCurrency; topUpTermsOfServiceIsAgreed: boolean; topUpCurrentStepIndex: number; topUpPaymentMethodTypes: WalletPaymentIntentPaymentMethod[]; }; //# sourceMappingURL=state.types.d.ts.map