import * as z from "zod/v3"; import { FieldValuePair, FieldValuePair$Outbound } from "./fieldvaluepair.js"; export type CountCondition = { /** * Field-value pairs to count matches for. Must target fields from the same nested object and may contain at most 5 pairs per group. */ fieldValuePairs: Array | null; }; /** @internal */ export type CountCondition$Outbound = { field_value_pairs: Array | null; }; /** @internal */ export declare const CountCondition$outboundSchema: z.ZodType; export declare function countConditionToJSON(countCondition: CountCondition): string; //# sourceMappingURL=countcondition.d.ts.map