import * as React from 'react'; import { VariableSuggestion } from '@grafana/data'; interface DataLinkSuggestionsProps { activeRef?: React.RefObject; 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 {};