import { Command } from "../command";
export default class List extends Command {
    commandString: string;
    description: string;
    action(type?: string): Promise<void>;
}
