import { Context } from 'koishi';
/**
 * AI语音功能管理类
 * 提供AI语音角色列表、语音发送等命令
 */
export declare class Voice {
    ctx: Context;
    logger: any;
    /**
     * 构造函数
     * @param ctx Koishi 上下文
     * @param logger 日志记录器
     */
    constructor(ctx: Context, logger: any);
    /**
     * 注册AI语音相关命令
     * @param parentCmd 父命令对象
     */
    registerCommands(parentCmd: any): void;
}
