import { JoinResult } from './types'; /** * Decodes and joins QR code parts back to binary data. * * @param parts Array of QR code parts * @returns Object containing the file type, encoding, and raw binary data. */ export declare function joinQRs(parts: string[]): JoinResult;