UNPKG

@grafana/ui

Version:
12 lines (11 loc) 524 B
import * as React from 'react'; import { type VariableSuggestion } from '@grafana/data'; interface DataLinkInputProps { value: string; onChange: (url: string, callback?: () => void) => void; suggestions: VariableSuggestion[]; placeholder?: string; ['aria-labelledby']?: string; } export declare const DataLinkInput: React.MemoExoticComponent<({ value, onChange, suggestions, placeholder, ["aria-labelledby"]: ariaLabelledby, }: DataLinkInputProps) => import("react/jsx-runtime").JSX.Element>; export {};