import { AuthenticationResult } from '../types/index.js';
/**
 * Main authentication function using browser OAuth flow with PKCE
 */
export declare function authenticateUser(): Promise<AuthenticationResult>;
/**
 * Verify current authentication status
 */
export declare function verifyAuthentication(): Promise<boolean>;
/**
 * Logout user by clearing stored tokens
 */
export declare function logoutUser(): Promise<void>;
//# sourceMappingURL=auth.d.ts.map