import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CustomAnalyticItem } from "./custom-analytic-item.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { UsageAnalyticItem } from "./usage-analytic-item.js"; export type GetUsageAnalyticsResponse = { currency?: string | undefined; customAnalytics?: Array | undefined; items?: Array | undefined; subtotal?: string | undefined; /** * TotalCost is the final cost after discount (Subtotal - TotalDiscount) */ totalCost?: string | undefined; totalDiscount?: string | undefined; }; /** @internal */ export declare const GetUsageAnalyticsResponse$inboundSchema: z.ZodMiniType; export declare function getUsageAnalyticsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=get-usage-analytics-response.d.ts.map