/// <reference types="node" />
import Functions from '../../functions';
declare class QRcode {
    private token;
    constructor(token: string);
}
interface QRcode {
    functions: Functions;
    generate(options?: QRcode_options): Promise<any>;
    read(image: Buffer | String): Promise<any>;
}
interface QRcode_options {
    text: string;
    size?: number;
    colorDark?: string;
    colorLight?: string;
    autoColor?: boolean;
    backgroundImage?: string;
    backgroundDimming?: string;
    logoImage?: string;
    logoCornerRadius?: number;
}
export default QRcode;
//# sourceMappingURL=QRcode.d.ts.map