import React from 'react'; import QRCode from '../utils/qrcode'; export interface RendererProps { qrcode?: QRCode; className?: string; value?: string; level?: string; styles?: any; title?: string; titleSize?: number; titleColor?: string; titleAlign?: string; icon?: string; iconScale?: number; } export declare type SFC
= StyledFunctionComponent
; export interface StyledFunctionComponent
extends React.FunctionComponent
{
defaultCSS?: any;
}
export declare const RendererWrapper: