import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AggregationType } from "./aggregation-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { UsageResult } from "./usage-result.js"; export type GetUsageResponse = { eventName?: string | undefined; results?: Array | undefined; type?: AggregationType | undefined; value?: number | undefined; }; /** @internal */ export declare const GetUsageResponse$inboundSchema: z.ZodMiniType; export declare function getUsageResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=get-usage-response.d.ts.map