import { type DateAttributeGranularity, type IAutomationMetadataObject } from "@gooddata/sdk-model"; import { type OverlayPositionType } from "@gooddata/sdk-ui-kit"; import { type AlertMetric, AlertMetricComparatorType } from "../../types.js"; export interface IAlertComparisonPeriodSelectProps { alert: IAutomationMetadataObject | undefined; measure: AlertMetric | undefined; overlayPositionType?: OverlayPositionType; selectedComparison?: AlertMetricComparatorType; selectedGranularity?: DateAttributeGranularity; onComparisonChange: (comparison: AlertMetricComparatorType, granularity?: DateAttributeGranularity) => void; id: string; closeOnParentScroll?: boolean; } export declare function AlertComparisonPeriodSelect({ alert, measure, overlayPositionType, selectedComparison, selectedGranularity, onComparisonChange, id, closeOnParentScroll }: IAlertComparisonPeriodSelectProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=AlertComparisonPeriodSelect.d.ts.map