import { type QrCodeErrorCorrection, type QrCodeLogoOptions } from '@wallet-ui/core'; import React from 'react'; import { BaseSvgProps } from './base-svg'; export interface WalletUiQrCodeProps extends Omit { backgroundColor?: string; border?: number; errorCorrection?: QrCodeErrorCorrection; foregroundColor?: string; logo?: QrCodeLogoOptions; title?: string; value: string; } export declare function WalletUiQrCode({ backgroundColor, border, errorCorrection, foregroundColor, logo, title, value, ...props }: WalletUiQrCodeProps): React.JSX.Element; //# sourceMappingURL=wallet-ui-qr-code.d.ts.map