import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Period, Period$Outbound } from "./period.js"; export type CountInfo = { /** * The counter value */ count: number; period?: Period | undefined; /** * The unit of organization over which we did the count aggregation, e.g. org (department) or company */ org?: string | undefined; }; /** @internal */ export declare const CountInfo$inboundSchema: z.ZodType; /** @internal */ export type CountInfo$Outbound = { count: number; period?: Period$Outbound | undefined; org?: string | undefined; }; /** @internal */ export declare const CountInfo$outboundSchema: z.ZodType; export declare function countInfoToJSON(countInfo: CountInfo): string; export declare function countInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=countinfo.d.ts.map