@grafana/ui
Version:
Grafana Components Library
15 lines (14 loc) • 516 B
TypeScript
import * as React from 'react';
import { 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 {};