import Command from "@oclif/command"; import { DraaftConfiguration } from "./types"; export declare abstract class BaseCommand extends Command { apiToken: string; spinner: any; draaftConfig: DraaftConfiguration; api: any; init(): Promise; }