import { Command } from "@oclif/core"; import { MittwaldAPIV2Client } from "@mittwald/api-client"; /** * Core base command class that provides common functionality but no * authentication flags. This is the base for both authenticated and * unauthenticated command hierarchies. */ export declare abstract class CoreBaseCommand extends Command { protected authenticationRequired: boolean; protected apiClient: MittwaldAPIV2Client; protected getEffectiveToken(): Promise; }