/** * Parse a string that represents a git patch * @param {String} contents The contents of the patch to parse * @return {Object} An object where the keys are filenames, and the * values are the contents of the diff */ export declare function parsePatch(contents: any): { files: {}; sha: any; message: string; }; export declare function parseMultiPatch(contents: any): { files: {}; sha: any; message: string; }[]; export declare function parseUnifiedDiff(diffContents: any): any[];