/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */
import { FileChanges } from "./file-changes.model.js";
import { VCSConfig } from "./vcs-config.model.js";
export interface CommitInput extends VCSConfig {
    repoNameWithOwner: string;
    branchName: string;
    expectedHeadOid: string;
    commitHeadline: string;
    commitMessage: string;
    fileChanges: FileChanges;
}
//# sourceMappingURL=commit-input.model.d.ts.map