/** * QQ 处理器类型定义与常量 * * 从 qq.ts 提取。 */ export declare const ATTACHMENT_BASE_DIR: string; export declare const ALLOWED_ATTACHMENT_EXTENSIONS: Set; export declare const QQ_CARD_SOFT_LIMIT = 2800; export type OpencodeFilePartInput = { type: 'file'; mime: string; url: string; filename?: string; }; export type OpencodePartInput = { type: 'text'; text: string; } | OpencodeFilePartInput; export type PermissionDecision = { allow: boolean; remember: boolean; }; export type QQSessionInfo = Awaited>[number]; //# sourceMappingURL=qq-types.d.ts.map