import Command from '../../BaseCommand.js';
export default class List extends Command {
    static description: string;
    static aliases: string[];
    static strict: boolean;
    run(): Promise<void>;
}
