import * as z from "zod/v3"; export type SyncTransactionGlobals = { merchantAccountId?: string | undefined; }; export type SyncTransactionRequest = { transactionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type SyncTransactionRequest$Outbound = { transaction_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const SyncTransactionRequest$outboundSchema: z.ZodType; export declare function syncTransactionRequestToJSON(syncTransactionRequest: SyncTransactionRequest): string; //# sourceMappingURL=synctransaction.d.ts.map