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