import { FunctionComponent } from "preact";
export interface QRCodeProps {
    content: string;
    width?: number;
    height?: number;
    fgColor?: string;
    bgColor?: string;
}
export declare const QRCode: FunctionComponent<QRCodeProps>;
