import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js"; import { WalletTransactionType } from "./wallettransactiontype.js"; export type SweepSubtotal = { /** * The type of wallet transaction the subtotal is for. */ type: WalletTransactionType; /** * The number of transactions of this type accrued in the sweep. */ count: number; /** * The value of transactions of this type accrued in the sweep. */ amount: AmountDecimal; }; /** @internal */ export declare const SweepSubtotal$inboundSchema: z.ZodType; /** @internal */ export type SweepSubtotal$Outbound = { type: string; count: number; amount: AmountDecimal$Outbound; }; /** @internal */ export declare const SweepSubtotal$outboundSchema: z.ZodType; export declare function sweepSubtotalToJSON(sweepSubtotal: SweepSubtotal): string; export declare function sweepSubtotalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sweepsubtotal.d.ts.map