import { FC } from 'react';
export interface QrProps {
    /** Optional. Extra classNames you can pass. */
    className?: string;
    /** Optional. margin for QR component. */
    margin?: number;
    /** Required. The content for QR code. */
    text: string;
    /** Optional. width size. */
    width?: number;
}
/**
 * Qr component.
 */
declare const Qr: FC<QrProps>;
export default Qr;
