import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A subsection of the results list from which distinct sections should be created. */ export type AutocompleteResultGroup = { /** * The inclusive start index of the range. */ startIndex?: number | undefined; /** * The exclusive end index of the range. */ endIndex?: number | undefined; /** * The title of the result group to be displayed. Empty means no title. */ title?: string | undefined; }; /** @internal */ export declare const AutocompleteResultGroup$inboundSchema: z.ZodType; export declare function autocompleteResultGroupFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=autocompleteresultgroup.d.ts.map