/** * Miyabi Auth Command * * OAuth-based authentication for secure GitHub access */ import { Command } from 'commander'; /** * Login command - OAuth Device Flow */ export declare function authLogin(): Promise; /** * Logout command - Delete credentials */ export declare function authLogout(): Promise; /** * Status command - Check authentication status */ export declare function authStatus(json?: boolean): Promise; /** * Register auth command */ export declare function registerAuthCommand(program: Command): void; //# sourceMappingURL=auth.d.ts.map