import { LitElement } from 'lit';
export interface IQRCodeProps {
    value: string;
}
export declare class LitQRCode extends LitElement {
    canvas: HTMLCanvasElement;
    static styles: import("lit").CSSResult;
    value: string;
    width: number;
    private _setQRCode;
    updated(): void;
    render(): import("lit").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        'lit-qrcode': LitQRCode;
    }
}
