import { ISchemaFilterContext } from "./SchemaFilterContext"; export interface ISchemaKpiAlert { author: string; kpiId: string; dashboardId: string; threshold: number; isTriggered: boolean; whenTriggered: "underThreshold" | "aboveThreshold"; identifier?: string; filterContext?: ISchemaFilterContext; }