import * as z from "zod/v3"; export type GetTransactionCaptureGlobals = { merchantAccountId?: string | undefined; }; export type GetTransactionCaptureRequest = { /** * The unique identifier of the transaction. */ transactionId: string; /** * The unique identifier of the capture. */ captureId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetTransactionCaptureRequest$Outbound = { transaction_id: string; capture_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetTransactionCaptureRequest$outboundSchema: z.ZodType; export declare function getTransactionCaptureRequestToJSON(getTransactionCaptureRequest: GetTransactionCaptureRequest): string; //# sourceMappingURL=gettransactioncapture.d.ts.map