import { Command } from 'commander'; import type { BotOption } from './shared.js'; interface FileOutput { id: string; filename: string; size: number; url: string; content_type?: string | null; } interface UploadActionResult { success?: boolean; error?: string; file?: FileOutput; } interface ListActionResult { success?: boolean; error?: string; files?: FileOutput[]; } export declare function uploadAction(channel: string, filePath: string, options: BotOption): Promise; export declare function listAction(channel: string, options: BotOption): Promise; export declare const fileCommand: Command; export {}; //# sourceMappingURL=file.d.ts.map