import type { Context } from 'koishi';
/**
 * 将图片 URL 转换为 Base64 格式
 */
export declare function convertToBase64image(ctx: Context, url: string, logInfo: (...args: any[]) => void): Promise<string>;
/**
 * 对时间戳进行编码，用于生成唯一标识符
 */
export declare function encodeTimestamp(timestamp: string): string;
