import { Output } from './types'; /** * Compares two given xlsx files * @param fixture path to the fixture file * @param file path to the file to be compared * @returns * * ```js * { * success: boolean, * error?: string, * differences: { * cells: {}, * additionalCells?: [], * missingCells?: [] * } * } * ``` */ export declare const xlsxCompare: (fixture: string, file: string) => Output;