import { AlertDefinition } from '../../../types';
export declare enum AlertType {
    DataChange = "DataChange",
    Validation = "Validation",
    RowChange = "RowChange",
    Aggregation = "Aggregation",
    Observable = "Observable"
}
/**
 * Based on alert shape the type is derived.
 * In the future the alert will get a type property.
 *
 * @param alert
 */
export declare const getAlertType: (alert: AlertDefinition) => AlertType | null;
export declare const getAlertTypeText: (alertType: AlertType) => string;
