export interface WebhookEvent { id: string; timestamp: string; webhookEvent: string; issueKey?: string; issueType?: string; summary?: string; status?: string; assignee?: string; user?: string; direction: "INCOMING" | "OUTGOING"; rawPayload?: any; changelog?: any; result?: string; errorMessage?: string; workflowId?: string; } export declare function addWebhookEvent(event: Partial): Promise; export declare function getWebhookEvents(): Promise; export declare function clearWebhookEvents(): Promise; export declare function getWebhookEventsCount(): number; //# sourceMappingURL=webhook-events-store.d.ts.map