import { Command, Interfaces } from '@oclif/core'; import { BaseCommand } from './base-command'; export type Flags = Interfaces.InferredFlags; export declare abstract class AuthenticatedBaseCommand extends BaseCommand { static globalFlags: { useauth: Interfaces.OptionFlag; token: Interfaces.OptionFlag; }; protected flags: Flags; refreshToken(alias: string | undefined): Promise; init(): Promise; }