/** * Teams Event Router (TEAMS-003) * * Routes Jira webhook events to subscribed Teams webhooks. * This module finds matching subscriptions and enqueues deliveries. */ import type { JiraEvent } from "./transformer"; /** * Route a Jira event to all matching Teams subscriptions * * @param event The standardized Jira event envelope * @param workspaceId The workspace/account ID for scoping subscriptions */ export declare function routeJiraEvent(event: JiraEvent, workspaceId?: string): Promise; //# sourceMappingURL=event-router.d.ts.map