export declare const compareFolders: (sourcePath: string, destinationPath: string, exceptions?: string[]) => Promise<{
    equal: boolean;
    reason: string;
}>;
