import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type CostPoint = { cost?: string | undefined; eventCount?: number | undefined; quantity?: string | undefined; timestamp?: string | undefined; }; /** @internal */ export declare const CostPoint$inboundSchema: z.ZodMiniType; export declare function costPointFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cost-point.d.ts.map