import type { Client } from "../kernel.js"; import type { ProjectBranchCreateOptions, ProjectBranchCreateResult, ProjectBranchDto, ProjectBranchesListResult, ProjectBranchRenewOptions } from "./branches.types.js"; export declare class Branches { private readonly client; constructor(client: Client); create(projectId: string, opts?: ProjectBranchCreateOptions): Promise; list(projectId: string): Promise; renew(projectId: string, branchProjectId: string, opts?: ProjectBranchRenewOptions): Promise; delete(projectId: string, branchProjectId: string): Promise; } //# sourceMappingURL=branches.d.ts.map