/** * 群聊处理器类型定义与常量 * * 从 group.ts 提取。 */ export declare const ATTACHMENT_BASE_DIR: string; export declare const ALLOWED_ATTACHMENT_EXTENSIONS: Set; export type OpencodeFilePartInput = { type: 'file'; mime: string; url: string; filename?: string; }; export type OpencodePartInput = { type: 'text'; text: string; } | OpencodeFilePartInput; export type QuestionSkipActionResult = 'applied' | 'not_found' | 'stale_card' | 'invalid_state'; //# sourceMappingURL=group-types.d.ts.map