/** * CLI notification helper * Creates notifications from CLI commands */ export interface NotificationInput { jiraKey: string; jiraUrl: string; projectKey: string; title: string; summary?: string; } /** * Create a notification for a CLI-created ticket */ export declare function notifyTicketCreatedFromCLI(input: NotificationInput): Promise; //# sourceMappingURL=notifications-cli.d.ts.map