import { type PanelData } from '@grafana/data'; import { type PrometheusDatasource } from '../../datasource'; import { type PromQuery } from '../../types'; interface PromQueryBuilderContainerProps { query: PromQuery; datasource: PrometheusDatasource; onChange: (update: PromQuery) => void; onRunQuery: () => void; data?: PanelData; showExplain: boolean; } /** * This component is here just to contain the translation logic between string query and the visual query builder model. */ export declare function PromQueryBuilderContainer(props: PromQueryBuilderContainerProps): import("react/jsx-runtime").JSX.Element | null; export {};