import type { JiraIssue } from '../../../types'; export declare const taskFoldersService: { create: (ticketKey: string, baseDir?: string, ticket?: JiraIssue) => Promise<{ folderPath: string; readmePath: string; branchName: string; }>; getPath: (ticketKey: string, baseDir?: string) => string; getReadmePath: (ticketKey: string, baseDir?: string) => string; readReadme: (ticketKey: string, baseDir?: string) => Promise; listFiles: (ticketKey: string, baseDir?: string) => Promise; readFile: (ticketKey: string, taskName: string, baseDir?: string) => Promise; exists: (ticketKey: string, baseDir?: string) => boolean; }; //# sourceMappingURL=task-folders.service.d.ts.map