import { type PrometheusDatasource } from '../../datasource'; import { type PromVisualQueryBinary } from '../types'; interface NestedQueryProps { nestedQuery: PromVisualQueryBinary; datasource: PrometheusDatasource; index: number; onChange: (index: number, update: PromVisualQueryBinary) => void; onRemove: (index: number) => void; onRunQuery: () => void; showExplain: boolean; } export declare const NestedQuery: import("react").NamedExoticComponent; export {};