/** * Bugs Watcher - Automatically process bugs-wip.json * * Watches for changes to bugs-wip.json and automatically creates Jira tickets */ export interface BugsWatcherOptions { filePath?: string; projectKey?: string; issueType?: string; epicKey?: string; labels?: string[]; interval?: number; autoProcess?: boolean; dryRun?: boolean; } /** * Watch bugs-wip.json file and process new bugs * @returns Cleanup function to stop the watcher */ export declare function watchBugsFile(options?: BugsWatcherOptions): Promise<() => void>; //# sourceMappingURL=bugs-watcher.d.ts.map