import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FieldValuePair } from "./fieldvaluepair.js"; export type CenseyeResult = { /** * Number of matching documents for this field-value combination. */ count: number; /** * The field-value pairs that were counted. */ fieldValuePairs: Array | null; }; /** @internal */ export declare const CenseyeResult$inboundSchema: z.ZodType; export declare function censeyeResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=censeyeresult.d.ts.map