import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SearchAggregateResponseBucket } from "./searchaggregateresponsebucket.js"; export type SearchAggregateResponse = { buckets: Array | null; isMoreThanTotalHits: boolean; otherCount: number; queryDurationMillis: number; totalCount: number; }; /** @internal */ export declare const SearchAggregateResponse$inboundSchema: z.ZodType; export declare function searchAggregateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=searchaggregateresponse.d.ts.map