import { CoreBaseCommand } from "./CoreBaseCommand.js"; /** * Base command class for commands that do not require authentication. This * class extends CoreBaseCommand directly, bypassing the --token flag from * BaseCommand. */ export declare abstract class UnauthenticatedBaseCommand extends CoreBaseCommand { protected authenticationRequired: boolean; init(): Promise; }