import { Context } from 'koishi';
export interface AuditResult {
    pass: boolean;
    score: number;
    message: string;
    processingTime?: number;
}
/**
 * 图片审核函数 - 优化版
 * 支持超时设置、重试机制、性能监控和更详细的错误处理
 */
export declare function auditImage(ctx: Context, data: ArrayBuffer | string, config: any): Promise<AuditResult>;
