import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of transaction. payment(one time payments) and invoice(subscription) */ export declare const TransactionType: { readonly Payment: "payment"; readonly Invoice: "invoice"; }; /** * The type of transaction. payment(one time payments) and invoice(subscription) */ export type TransactionType = ClosedEnum; /** @internal */ export declare const TransactionType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const TransactionType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=transactiontype.d.ts.map