import { CheckoutResponse } from '../../types'; export interface CheckoutDiscountCodeApplyInput { checkoutId: string; discountCode: string; } export declare type CheckoutDiscountCodeApplyResponse = CheckoutResponse<'checkoutDiscountCodeApplyV2'>; export declare const CHECKOUT_DISCOUNT_CODE_APPLY: import("graphql").DocumentNode;