import React from 'react'; import { CommonPropsType } from '../../types'; import type { DataType } from '../../../configs/components/qr_code'; import type { Except } from 'type-fest'; import '../style'; export declare const QrCode: React.ForwardRefExoticComponent>; export interface QrCodeProps extends CommonPropsType, Except { text: DataType['text']; backgroundColor: DataType['backgroundColor']; foregroundColor: DataType['foregroundColor']; showMenuByLongpress: DataType['showMenuByLongpress']; }