import type { AutocompleteSuggestionPart } from '@dynatrace-sdk/client-query'; export declare const URL_PREFIX = "https://dt-url.net/dql_"; /** * Generates URLs to the docs for DQL commands and functions. * Maps supported token types to static URL parts ('COMMAND_NAME' to 'command', 'FUNCTION_NAME' to 'function', 'TIMESERIES_AGGREGATION' to 'timeseries'). * FIXME: This is a tempory solution (EXA-4874) and will be replaced by URLs provided by the server (EXA-5121). * @param suggestion - the autocomplete suggestion as returned by the endpoint * @returns the generated URL, or 'undefined' if any other token type then 'COMMAND_NAME' or 'FUNCTION_NAME' */ export declare function generateDocumentationLink(suggestion: AutocompleteSuggestionPart | undefined): string | undefined; export declare const DocumentationLink: ({ suggestionPart, }: { suggestionPart: AutocompleteSuggestionPart | undefined; }) => import("react/jsx-runtime").JSX.Element | null;