import { BaseCommand } from '../../modules/shared/base-commands/base-command'; export default class HashDirectory extends BaseCommand { static description: string; static flags: {}; static args: { name: string; description: string; required: boolean; }[]; run(): Promise; }