import type { CommandModule } from 'yargs'; interface LoginArgs { url?: string; email?: string; password?: string; 'web-id'?: string; name?: string; output?: boolean; } export declare const loginCommandModule: CommandModule; export {};