import { QRCode } from 'qrcode'; /** * Renders the QR code data to an SVG format. * * @see https://github.com/soldair/node-qrcode/blob/v1.5.4/lib/renderer/svg-tag.js#L55 * * @param qrData - The QR code data to render. * @returns An object containing the SVG path and viewBox. * * @example * ```tsx * export const QRCode = ({ value }) => { * const qr = create(value) * const { path, viewBox } = renderToSvg(qr) * * return ( * * * * ) * } * ``` */ export declare const renderToSvg: (qrData: QRCode) => { path: string; viewBox: string; }; //# sourceMappingURL=qrcode.d.ts.map