import { CommandModule, InferredOptionTypes } from "yargs"; declare const builder: { "access-token": { describe: string; type: "string"; }; email: { describe: string; type: "string"; }; force: { describe: string; type: "boolean"; }; "login-method": { describe: string; choices: string[]; type: "string"; }; origin: { describe: string; type: "string"; }; password: { describe: string; type: "string"; }; "xsrf-token": { describe: string; type: "string"; }; }; type LoginOptionType = InferredOptionTypes; export declare function logSuccess(): void; declare const commandModule: CommandModule; export default commandModule;