export type SentinelDomain = "engineering" | "sales" | "product" | "operations" | "marketing"; export type BuiltInSentinel = { id: string; domain: SentinelDomain; name: string; summary: string; signal: "error_log" | "ci_failure" | "dependency_scan" | "accessibility_audit" | "deal_stagnation" | "lead_response" | "cost_anomaly" | "sla_breach" | "content_performance" | "budget_monitor"; severity: "high" | "medium"; schedule: { cadence: "realtime" | "hourly"; windowMinutes: number; }; trigger: { operator: "gt" | "eq"; threshold: number; unit: "events" | "failures" | "findings" | "hours" | "minutes" | "percent"; }; defaultAction: string; }; export declare function listBuiltInSentinels(input?: { domain?: string | null; signal?: string | null; }): BuiltInSentinel[];