import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type OlapPriceWithUsd = { currency: string; /** * Amount of currency */ value: number; /** * Amount in USD */ valueUsd?: number | undefined; }; /** @internal */ export declare const OlapPriceWithUsd$inboundSchema: z.ZodType; /** @internal */ export type OlapPriceWithUsd$Outbound = { currency: string; value: number; valueUsd?: number | undefined; }; /** @internal */ export declare const OlapPriceWithUsd$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 OlapPriceWithUsd$ { /** @deprecated use `OlapPriceWithUsd$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapPriceWithUsd$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapPriceWithUsd$Outbound` instead. */ type Outbound = OlapPriceWithUsd$Outbound; } export declare function olapPriceWithUsdToJSON(olapPriceWithUsd: OlapPriceWithUsd): string; export declare function olapPriceWithUsdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olappricewithusd.d.ts.map