import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ChatSuggestion = { /** * The actionable chat query to run when the user selects this suggestion. */ query?: string | undefined; /** * Targeted Glean Chat feature for the suggestion. */ feature?: string | undefined; }; /** @internal */ export declare const ChatSuggestion$inboundSchema: z.ZodType; export declare function chatSuggestionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=chatsuggestion.d.ts.map