import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CountAggregation = { func: "count"; }; /** @internal */ export declare const CountAggregation$inboundSchema: z.ZodMiniType; /** @internal */ export type CountAggregation$Outbound = { func: "count"; }; /** @internal */ export declare const CountAggregation$outboundSchema: z.ZodMiniType; export declare function countAggregationToJSON(countAggregation: CountAggregation): string; export declare function countAggregationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=countaggregation.d.ts.map