/** * 读取出二维码图片中的文本内容 * @param imagePath 图片路径 */ export declare function readQrcodeImageContent(imagePath: string): Promise; /** * 将文本内容转换成二维码输出在控制台上 * @param content */ export declare function printQrcode2Terminal(content: string): Promise; /** * 生成二维码图片到指定目录 * @param content * @param path */ export declare function generateQrcodeImageFile(path: string, content: string): Promise;