export interface JiraShellProject { url: string; username?: string; project: string; customFields?: Record; } /** * searches for a '.jira-shell' file in the cwd and all of its ancestors */ export declare const getJiraShellProject: () => JiraShellProject; export declare const UNDEFINED_PROJECT: { url: any; project: string; }; //# sourceMappingURL=project.d.ts.map