import { ComponentProps } from 'react'; import { Button } from '../ui/button'; import { ScrollArea } from '../ui/scroll-area'; export type SuggestionsProps = ComponentProps; export declare const Suggestions: ({ className, children, ...props }: SuggestionsProps) => import("react/jsx-runtime").JSX.Element; export type SuggestionProps = Omit, "onClick"> & { suggestion: string; onClick?: (suggestion: string) => void; }; export declare const Suggestion: ({ suggestion, onClick, className, size, children, ...props }: SuggestionProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=suggestion.d.ts.map