import { BaseRequestOptions, BaseService, PaginatedRequestOptions, Sudo } from '../infrastructure'; export declare class ProtectedBranches extends BaseService { all(projectId: string | number, options?: PaginatedRequestOptions): Promise; protect(projectId: string | number, branchName: string, options?: BaseRequestOptions): Promise; show(projectId: string | number, branchName: string, options?: Sudo): Promise; unprotect(projectId: string | number, branchName: string, options?: Sudo): Promise; }