import { BaseService } from '../infrastructure'; import { RequestOptions } from '../infrastructure/RequestHelper'; declare class Branches extends BaseService { all(projectId: ProjectId, options: RequestOptions): Promise; create(projectId: ProjectId, branchName: string, ref: string): Promise; protect(projectId: ProjectId, branchName: string, options: RequestOptions): Promise; remove(projectId: ProjectId, branchName: string): Promise; show(projectId: ProjectId, branchName: string): Promise; unprotect(projectId: ProjectId, branchName: string): Promise; } export default Branches;