import { ObjectService } from ".."; import { BacklogItemTemplate, PlaybookService, RepoItem, RepoService, RepoTemplate, StorageService } from "../../models"; export declare class CodeWithPlaybookService implements PlaybookService { private repoService; private contentService; private playbookRepoName; private storageService; constructor(repoService: RepoService, contentService: ObjectService, storageService: StorageService); getBacklogItemTemplates(): Promise; getTemplates(): Promise; getRepoItem(templateName: string, includeContent?: boolean): Promise; downloadTemplate(localRelativePath: string, template: RepoTemplate): Promise; }