import type { ComponentProps, ReactNode } from "react"; 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 interface SuggestionProps { children?: ReactNode; className?: string; disabled?: boolean; icon?: ReactNode; onClick?: (suggestion: string) => void; size?: "tiny" | "small" | "medium" | "large" | null; suggestion: string; variant?: "default" | "secondary" | "tertiary"; } export declare const Suggestion: ({ suggestion, onClick, className, disabled, icon, variant, size, children, }: SuggestionProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=suggestion.d.ts.map