/**
 * Displays a QR code card, with your choice of URL and specified width.
 * @author Benedikt Arnarsson
 * @author Gabe Abrams
 */
import React from 'react';
type Props = {
    url: string;
    subText?: string;
};
declare const QrCard: React.FC<Props>;
export default QrCard;
