/** * CLI Command: create-ticket * * Create tickets in Jira */ import { Command } from "commander"; export declare const createTicketCommand: Command; /** * Shared handler for creating issues (used by create:ticket, create:epic, create:bug, create:story) */ export declare function createIssueHandler(options: { title?: string; summary?: string; project?: string; type?: string; description?: string; labels?: string[]; assignee?: string; user?: string; reporter?: string; priority?: string; epic?: string; parent?: string; components?: string | string[]; fixVersions?: string | string[]; sprint?: string; addToSprint?: string; start?: boolean; json?: boolean; verbose?: boolean; }): Promise; //# sourceMappingURL=create-ticket.d.ts.map