import React from 'react'; import { BoxProps } from '@chakra-ui/react'; interface QRCodeProps extends BoxProps { hasFrame?: boolean; value: string; size?: string | number; } declare const Component: React.ForwardRefExoticComponent>; export { Component as QRCode, type QRCodeProps, };