import { type OverlayPositionType } from "@gooddata/sdk-ui-kit"; import { type AlertMetric } from "../../types.js"; export interface IAlertMetricSelectProps { id?: string; disabled?: boolean; selectedMeasure: AlertMetric | undefined; onMeasureChange: (measure: AlertMetric) => void; measures: AlertMetric[]; overlayPositionType?: OverlayPositionType; closeOnParentScroll?: boolean; } export declare function AlertMeasureSelect({ id, disabled, selectedMeasure, onMeasureChange, measures, overlayPositionType, closeOnParentScroll }: IAlertMetricSelectProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AlertMeasureSelect.d.ts.map