import { Environment } from '../types/checkout/CheckoutConfig.type'; export interface CheckoutDetails { payment: string; amount: number; currency: string; countryCode: string; supportedPaymentMethods: string[]; applePay: { merchantId: string; }; vgsJwt?: string; } export declare const getCheckoutDetails: ({ id, checkoutKey, environment, }: { id: string; checkoutKey: string; environment: Environment; }) => Promise; //# sourceMappingURL=getCheckoutDetails.query.d.ts.map