import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The low value in each range is included. The high value in each range is excluded. */ export declare const MonthlyVolumeRange: { readonly Under10k: "under-10k"; readonly Tenk50k: "10k-50k"; readonly Fiftyk100k: "50k-100k"; readonly OneHundredk250k: "100k-250k"; readonly TwoHundredAndFiftyk500k: "250k-500k"; readonly FiveHundredk1m: "500k-1m"; readonly Onem5m: "1m-5m"; readonly Over5m: "over-5m"; }; /** * The low value in each range is included. The high value in each range is excluded. */ export type MonthlyVolumeRange = ClosedEnum; /** @internal */ export declare const MonthlyVolumeRange$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const MonthlyVolumeRange$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=monthlyvolumerange.d.ts.map