import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type Range = { from?: number | undefined; to?: number | undefined; }; /** @internal */ export declare const Range$inboundSchema: z.ZodType; /** @internal */ export type Range$Outbound = { from?: number | undefined; to?: number | undefined; }; /** @internal */ export declare const Range$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Range$ { /** @deprecated use `Range$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Range$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Range$Outbound` instead. */ type Outbound = Range$Outbound; } export declare function rangeToJSON(range: Range): string; export declare function rangeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=range.d.ts.map