import React, { CSSProperties } from 'react'; export interface MyQRCodeProps { visible?: boolean; value?: any; content?: string; isLogo?: boolean; srcType?: string; fileCode?: string; src?: string; color?: string; logoSize?: string; onClick?: (url?: string, content?: string) => void; getEngineApis?: any; backgroundType?: any; style?: CSSProperties; } declare const QRCode: React.ForwardRefExoticComponent>; export default QRCode;