/** * Command options for the session command */ export type SessionOptions = Record; /** * Displays information about the current authentication session * * @param {SessionOptions} _options - Command options from commander (unused) * @returns A promise that resolves when the display is complete */ declare function session(_options?: SessionOptions): Promise; export default session;