import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UniqueAggregation = { func: "unique"; property: string; }; /** @internal */ export declare const UniqueAggregation$inboundSchema: z.ZodMiniType; /** @internal */ export type UniqueAggregation$Outbound = { func: "unique"; property: string; }; /** @internal */ export declare const UniqueAggregation$outboundSchema: z.ZodMiniType; export declare function uniqueAggregationToJSON(uniqueAggregation: UniqueAggregation): string; export declare function uniqueAggregationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=uniqueaggregation.d.ts.map