import { ReturnCode } from '../../types/command'; import { TargetCommand } from '../../types/command/targetCommand'; export declare class AuthCommand extends TargetCommand { constructor(args: string[]); get insecure(): boolean; get passwordStdin(): boolean; execute(): Promise; executeLogin(): Promise; executeCred(): Promise; }