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