import type { HTMLAttributes, ReactNode } from 'react'; import React from 'react'; import type { Suggestion } from './types'; export interface Props extends HTMLAttributes { activeElement: HTMLElement | undefined; footer?: ReactNode; minHeight?: number; maxHeight?: number; origin: HTMLElement | null; query: string; suggestions: Suggestion[]; } export declare function Suggestions({ activeElement, children, className, footer, minHeight, maxHeight, origin, query, suggestions, ...attributes }: Props): React.JSX.Element;