import { type IChatConversationLocalItem, type TextContentObject } from "../../model.js"; export interface IAssistantItemSuggestionsProps { showSuggestions?: boolean; references?: TextContentObject[]; message: IChatConversationLocalItem; type: "followUp" | "actions"; } export declare function AssistantItemSuggestions({ type, message, showSuggestions, references, }: IAssistantItemSuggestionsProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=AssistantItemSuggestions.d.ts.map