import { type TimeRange } from '@grafana/data'; import { type PrometheusDatasource } from '../../datasource'; import { type PromVisualQuery } from '../types'; interface MetricsLabelsSectionProps { query: PromVisualQuery; datasource: PrometheusDatasource; onChange: (update: PromVisualQuery) => void; variableEditor?: boolean; onBlur?: () => void; timeRange: TimeRange; } export declare function MetricsLabelsSection({ datasource, query, onChange, onBlur, variableEditor, timeRange, }: MetricsLabelsSectionProps): import("react/jsx-runtime").JSX.Element; export {};