import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CountInfo } from "./countinfo.js"; export type LabeledCountInfo = { /** * Label for the included count information. */ label: string; /** * List of data points for counts for a given date period. */ countInfo?: Array | undefined; }; /** @internal */ export declare const LabeledCountInfo$inboundSchema: z.ZodType; export declare function labeledCountInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=labeledcountinfo.d.ts.map