/** * Jira Debug Information * * Gathers diagnostic information about Jira connection and permissions */ export interface JiraDebugInfo { ok: boolean; error?: string; baseUrl?: string; email?: string; accountId?: string; displayName?: string; emailAddress?: string; active?: boolean; defaultReporter?: string; permissions?: { createIssues?: boolean; projectKey?: string; }; } /** * Get comprehensive Jira debug information * * @param projectKey Optional project key to check permissions for */ export declare function getJiraDebugInfo(projectKey?: string): Promise; //# sourceMappingURL=jira-debug.d.ts.map