import { type QueryEditorProps } from '@grafana/data'; import { type PrometheusDatasource } from '../datasource'; import { type PromOptions, type PromQuery, type PromVariableQuery, type StandardPromVariableQuery } from '../types'; export type Props = QueryEditorProps; export declare const PromVariableQueryEditor: ({ onChange, query, datasource, range }: Props) => import("react/jsx-runtime").JSX.Element; export declare function variableMigration(query: string | PromVariableQuery | StandardPromVariableQuery): PromVariableQuery;