import { CommandBase, CommandParser } from '@autobot/common'; /** * Lists all configured aliases with `;;aliaslist`. */ export declare class AliasListCommand extends CommandBase { constructor(); /** * Called when a command matches config.name. * * @param command Parsed out commamd */ run(command: CommandParser): Promise; }