import { Command, CliCommandOption } from "../command";
export default class Add extends Command {
    commandString: string;
    description: string;
    options: CliCommandOption[];
    action(type: string, args: {
        [key: string]: string;
    }): Promise<void>;
}
