import { BaseService } from '../infrastructure'; import { RequestOptions } from '../infrastructure/RequestHelper'; declare class Repositories extends BaseService { compare(projectId: ProjectId, from: string, to: string): Promise; contributors(projectId: ProjectId): Promise; showArchive(projectId: ProjectId, { sha }: { sha: string; }): Promise; showBlob(projectId: ProjectId, sha: string): Promise; showBlobRaw(projectId: ProjectId, sha: string): Promise; tree(projectId: ProjectId, options: RequestOptions): Promise; } export default Repositories;