import QRCode from 'qr.js/lib/QRCode'; export declare type ErrorCorrectLevelNames = 'L' | 'M' | 'Q' | 'H'; /** * Builds a QR code from the given binary data. * * Based on code originally from https://github.com/zpao/qrcode.react, * originally published with an ISC license. */ export default function makeQRCode(value: Uint8Array, level: ErrorCorrectLevelNames): QRCode; //# sourceMappingURL=makeQRCode.d.ts.map