import { BaseService, Sudo, BaseRequestOptions } from '../infrastructure'; export declare class Repositories extends BaseService { compare(projectId: string | number, from: string, to: string, options?: Sudo): Promise; contributors(projectId: string | number, options?: Sudo): Promise; mergeBase(projectId: string | number, refs: string[], options?: Sudo): Promise; showArchive(projectId: string | number, options?: { sha: string; } & Sudo): Promise; showBlob(projectId: string | number, sha: string, options?: Sudo): Promise; showBlobRaw(projectId: string | number, sha: string, options?: Sudo): Promise; tree(projectId: string | number, options?: BaseRequestOptions): Promise; }