import type { AutocompleteSuggestionPart } from '@dynatrace-sdk/client-query'; /** * Generates a documentation URL for a DQL suggestion part, or `undefined` if * the part's token type has no corresponding docs page. * @param suggestion - the autocomplete suggestion part as returned by the endpoint */ export declare function generateDocumentationLink(suggestion: AutocompleteSuggestionPart | undefined): string | undefined; /** * Renders a small "Documentation" external link for a DQL suggestion part, * or nothing when the part's token type has no associated docs page. */ export declare const DocumentationLink: ({ suggestionPart, }: { suggestionPart: AutocompleteSuggestionPart | undefined; }) => import("react").JSX.Element | null; //# sourceMappingURL=DocumentationLink.d.ts.map