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