/** * Logout Command * * Clears stored authentication credentials. */ import type { Command } from "commander"; /** * Main logout function * * @param args - Configuration arguments * @param args.installDir - Installation directory */ export declare const logoutMain: (args?: { installDir?: string | null; }) => Promise; /** * Register the 'logout' command with commander * * @param args - Configuration arguments * @param args.program - Commander program instance */ export declare const registerLogoutCommand: (args: { program: Command; }) => void; //# sourceMappingURL=logout.d.ts.map