import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type SalesChart = { /** * Combined continuation token to paginate search result */ cursor?: string | undefined; dates: Array; pricesNative: Array; itemIds: Array; }; /** @internal */ export declare const SalesChart$inboundSchema: z.ZodType; /** @internal */ export type SalesChart$Outbound = { cursor?: string | undefined; dates: Array; pricesNative: Array; itemIds: Array; }; /** @internal */ export declare const SalesChart$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 SalesChart$ { /** @deprecated use `SalesChart$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SalesChart$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SalesChart$Outbound` instead. */ type Outbound = SalesChart$Outbound; } export declare function salesChartToJSON(salesChart: SalesChart): string; export declare function salesChartFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=saleschart.d.ts.map