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