import type { TOTP } from 'otpauth';
type Args = {
    totp: TOTP;
};
export default function QRCode({ totp }: Args): Promise<import("react").JSX.Element>;
export {};
