/** * Returns a human readable diff of the two files at the given paths expressed * as a `string`. * * Returns null if they are the same. */ export declare function diffFile(a: string, b: string): string | null;