import React from 'react'; import { LokiQueryField } from './LokiQueryField'; import { LokiQueryEditorProps } from './types'; export function LokiQueryEditorForAlerting(props: LokiQueryEditorProps) { const { query, data, datasource, onChange, onRunQuery } = props; return ( ); } export const testIds = { editor: 'loki-editor-cloud-alerting', };