/** * Automation Service import { getErrorMessage } from './../../types/common'; * * Service for creating Jira tickets from JSON files and orchestrator instructions */ import { type CreateTicketOptions, type BatchCreationResult } from "../../../automation/ticket-creator"; /** * Process bugs-wip.json file and create Jira tickets */ export declare function processBugsJson(filePath: string, options?: CreateTicketOptions): Promise; /** * Process JSON instruction file from orchestrator */ export declare function processJsonInstructions(filePath: string, options?: CreateTicketOptions): Promise; /** * Process JSON instructions directly (from orchestrator API) */ export declare function processJsonInstructionsDirect(instructions: unknown, options?: CreateTicketOptions): Promise; //# sourceMappingURL=automation.service.d.ts.map