import * as react_jsx_runtime from 'react/jsx-runtime'; import { ComponentProps } from 'react'; import { Button } from '../ui/button.js'; import { ScrollArea } from '../ui/scroll-area.js'; import 'class-variance-authority/types'; import '@base-ui/react/button'; import 'class-variance-authority'; import '@base-ui/react/scroll-area'; type SuggestionsProps = ComponentProps; declare const Suggestions: ({ className, children, ...props }: SuggestionsProps) => react_jsx_runtime.JSX.Element; type SuggestionProps = Omit, "onClick"> & { suggestion: string; onClick?: (suggestion: string) => void; }; declare const Suggestion: ({ suggestion, onClick, className, variant, size, children, ...props }: SuggestionProps) => react_jsx_runtime.JSX.Element; export { Suggestion, type SuggestionProps, Suggestions, type SuggestionsProps };