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