import {t} from 'sentry/locale'; import type {Organization, TagCollection} from 'sentry/types'; import type {QueryFieldValue} from 'sentry/utils/discover/fields'; import type {WidgetType} from 'sentry/views/dashboards/types'; import {DisplayType} from 'sentry/views/dashboards/types'; import type {DataSet} from '../../utils'; import {BuildStep} from '../buildStep'; import {YAxisSelector} from './yAxisSelector'; interface Props { aggregates: QueryFieldValue[]; dataSet: DataSet; displayType: DisplayType; onYAxisChange: (newFields: QueryFieldValue[]) => void; organization: Organization; tags: TagCollection; widgetType: WidgetType; queryErrors?: Record[]; } export function YAxisStep({ displayType, queryErrors, aggregates, onYAxisChange, tags, widgetType, }: Props) { return ( ); }