import type { Ref } from 'react'; import type { BaseProps, ForwardRefForwardPropsComponent } from '../../types'; export declare const StyledEmptyQRWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; export interface QRCodeProps extends BaseProps { /** Text that need to be encoded into QR code. */ value: string; /** The HTML alt attribute for the image. */ label?: string; /** Ref for the wrapping element. */ ref?: Ref; } declare const QRCode: ForwardRefForwardPropsComponent; export default QRCode; //# sourceMappingURL=QRCode.d.ts.map