import * as React from 'react';
import { PromptSuggestion } from "../../hooks/features/aiAssistant/gridAiAssistantInterfaces.js";
type GridAiAssistantPanelSuggestionsProps = {
  suggestions: PromptSuggestion[];
};
declare function GridAiAssistantPanelSuggestions(props: GridAiAssistantPanelSuggestionsProps): React.JSX.Element;
export { GridAiAssistantPanelSuggestions };