import { type TrackingTaskInfo } from '../../helpers/types'; import { type SourceChanges } from './types'; export interface PatchTrackingSnapshotOptions { changes: SourceChanges; workspaceRoot: string; tenantName: string; namespace: string; trackingTaskInfo?: TrackingTaskInfo; cwd: string; } export default function patchTrackingSnapshot(options: PatchTrackingSnapshotOptions): Promise;