//#region extensions/crypto/src/commands/pull-command.d.ts /** * /pull — Read a file from the running bot and send it to chat. * * Small files: inline as code block. * Large files on Telegram: sent as document attachment. * Directories: list contents. * * Security: blocks sensitive paths (.env, private keys, credentials, bot tokens). */ declare const pullCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { pullCommand }; //# sourceMappingURL=pull-command.d.mts.map