import * as react_jsx_runtime from 'react/jsx-runtime'; interface SuggestionsProps { title: string; message: string; partial?: boolean; className?: string; onClick: () => void; } declare function Suggestion({ title, onClick, partial, className }: SuggestionsProps): react_jsx_runtime.JSX.Element | null; export { Suggestion };