/** * Telegram 处理器类型定义与常量 * * 从 telegram.ts 提取。 */ export declare const ATTACHMENT_BASE_DIR: string; export declare const ALLOWED_ATTACHMENT_EXTENSIONS: Set; export type ParsedQuestionAnswer = { type: 'skip' | 'custom' | 'selection'; values?: string[]; custom?: string; }; 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; }; //# sourceMappingURL=telegram-types.d.ts.map