/** * Describes the action to be applied to a delayed capture payment when the delay_duration * has elapsed. */ export declare const PaymentOptionsDelayAction: { readonly Cancel: "CANCEL"; readonly Complete: "COMPLETE"; }; export type PaymentOptionsDelayAction = (typeof PaymentOptionsDelayAction)[keyof typeof PaymentOptionsDelayAction];