import { type AnnotationQuery } from '@grafana/data'; import { type PromQuery } from '../types'; import { type PromQueryEditorProps } from './types'; type Props = PromQueryEditorProps & { annotation?: AnnotationQuery; onAnnotationChange?: (annotation: AnnotationQuery) => void; }; /** * AnnotationQueryEditor component for Prometheus datasource. * Allows users to configure annotation queries with options for title, tags, text format, * and timestamp settings. */ export declare const AnnotationQueryEditor: import("react").MemoExoticComponent<(props: Props) => import("react/jsx-runtime").JSX.Element>; export {};