export declare const isCommand: (text: string) => boolean; interface ChatDropupProps { recentPrompts: string[]; suggestions: string[]; isLoading: boolean; onSelection: (q: string) => void; anchorEl: HTMLElement | null; text: string; recommendationsError: boolean; } export default function ChatDropup({ recentPrompts, suggestions, isLoading, onSelection, anchorEl, text, recommendationsError, }: ChatDropupProps): import("react/jsx-runtime").JSX.Element; export {};