/** * AAL display constants - semantic mapping for SDK/UI. * Used for consistent display of AAL decisions (e.g. colors). */ import type { AnomalyAction } from './types.js'; /** * Display color for each AAL action. * SDK/UI can use this for consistent styling (e.g. green = allow, yellow = warn, red = block). */ export declare const ACTION_DISPLAY_COLORS: Record; /** * Returns the display color for an AAL action. */ export declare function getActionDisplayColor(action: AnomalyAction): string; //# sourceMappingURL=constants.d.ts.map