/** * Fix Now Operations import { getErrorMessage } from './../../types/common'; * * Handle "fix now" button functionality for bugs */ import { type BugItem } from "../../../automation/json-reader"; /** * Process a single bug with "fix now" priority */ export declare function processFixNowBug(filePath: string, bugId: string, options?: { projectKey?: string; issueType?: string; epicKey?: string; labels?: string[]; dryRun?: boolean; }): Promise<{ success: boolean; issueKey?: string; issueUrl?: string; error?: string; }>; /** * Get all bugs with "fix now" status */ export declare function getFixNowBugs(filePath: string): BugItem[]; //# sourceMappingURL=fix-now.d.ts.map