/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */
interface FileAddition {
    path: string;
    contents: string;
}
interface FileDeletion {
    path: string;
}
export interface FileChanges {
    additions: FileAddition[];
    deletions: FileDeletion[];
}
export {};
//# sourceMappingURL=file-changes.model.d.ts.map