/** * Login Command * * Authenticates users against noriskillsets.dev and stores credentials. */ import type { Command } from "commander"; export declare const loginMain: (args?: { installDir?: string | null; nonInteractive?: boolean | null; email?: string | null; password?: string | null; }) => Promise; /** * Register the 'login' command with commander * * @param args - Configuration arguments * @param args.program - Commander program instance */ export declare const registerLoginCommand: (args: { program: Command; }) => void; //# sourceMappingURL=login.d.ts.map