import { type ProjectInfo } from '../jira/jiraClient'; export interface BootstrapResult { success: boolean; message: string; changed: boolean; } export declare function ensureProjectAccess(projectKey: string): Promise; export declare function ensureAutomationUser(automationEmail?: string): Promise; export declare function ensureDefaultReporter(projectKey: string): Promise; export declare function ensureProjectExistsAndAccessible(projectKey: string): Promise; export declare function ensureJiraMateFields(projectKey: string): Promise; export declare function getProjectPermissions(projectKey: string): Promise<{ projectExists: boolean; hasAccess: boolean; permissions: Record; error?: string; }>; //# sourceMappingURL=jiraBootstrap.d.ts.map