import { BaseService } from '../infrastructure'; import { RequestOptions } from '../infrastructure/RequestHelper'; declare class RepositoryFiles extends BaseService { create(projectId: ProjectId, filePath: string, branch: string, options: RequestOptions): Promise; edit(projectId: ProjectId, filePath: string, branch: string, options: RequestOptions): Promise; remove(projectId: ProjectId, filePath: string, branch: string, options: RequestOptions): Promise; show(projectId: ProjectId, filePath: string, ref: string): Promise; showRaw(projectId: ProjectId, filePath: string, ref: string): Promise; } export default RepositoryFiles;