import * as React from 'react';
import { type VariableSuggestion } from '@grafana/data';
interface DataLinkSuggestionsProps {
    activeRef?: React.RefObject<HTMLDivElement>;
    suggestions: VariableSuggestion[];
    activeIndex: number;
    onSuggestionSelect: (suggestion: VariableSuggestion) => void;
    onClose?: () => void;
}
export declare const DataLinkSuggestions: {
    ({ suggestions, ...otherProps }: DataLinkSuggestionsProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export {};
