import * as z from "zod/v3"; export type DeleteCheckoutSessionGlobals = { merchantAccountId?: string | undefined; }; export type DeleteCheckoutSessionRequest = { /** * The ID of the checkout session. */ sessionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type DeleteCheckoutSessionRequest$Outbound = { session_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const DeleteCheckoutSessionRequest$outboundSchema: z.ZodType; export declare function deleteCheckoutSessionRequestToJSON(deleteCheckoutSessionRequest: DeleteCheckoutSessionRequest): string; //# sourceMappingURL=deletecheckoutsession.d.ts.map