import { CommandBase, CommandParser } from '@autobot/common'; /** * Outputs the filenames. */ export declare class ListFilesCommand extends CommandBase { static readonly BLOCKED_FILES: Array; constructor(); /** * Called when a command matches config.name. * * @param command Parsed out commamd * */ run(command: CommandParser): Promise; }