import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AutocompleteResult } from "./autocompleteresult.js"; import { AutocompleteResultGroup } from "./autocompleteresultgroup.js"; import { GleanDataError } from "./gleandataerror.js"; import { SessionInfo } from "./sessioninfo.js"; export type AutocompleteResponse = { /** * List of experiment ids for the corresponding request. */ experimentIds?: Array | undefined; /** * An opaque token that represents this particular set of autocomplete results. To be used for /feedback reporting. */ trackingToken?: string | undefined; sessionInfo?: SessionInfo | undefined; results?: Array | undefined; /** * Subsections of the results list from which distinct sections should be created. */ groups?: Array | undefined; gleanDataError?: GleanDataError | undefined; /** * Time in milliseconds the backend took to respond to the request. */ backendTimeMillis?: number | undefined; }; /** @internal */ export declare const AutocompleteResponse$inboundSchema: z.ZodType; export declare function autocompleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=autocompleteresponse.d.ts.map