/** * Copyright Daytona Platforms Inc. * SPDX-License-Identifier: Apache-2.0 */ import type { Sandbox } from '@daytona/sdk'; export declare class DaytonaSandboxGitManager { private readonly sandbox; private readonly repoPath; constructor(sandbox: Sandbox, repoPath: string); ensureDirectory(): Promise; private runGitCommand; ensureRepo(): Promise; autoCommit(): Promise; resetToRemote(branch: string): Promise; }