/**
 * Main function to extract, convert, and compare the content of two .xlsx files.
 * @param {string} filePath1 - Path to the first .xlsx file.
 * @param {string} filePath2 - Path to the second .xlsx file.
 */
export declare function matchXLSXFiles(filePath1: string, filePath2: string): Promise<boolean>;
