/** * CLI Session Reader * Reads NextAuth session to identify the logged-in user for CLI commands */ export interface CliSession { userId: string; email: string; } /** * Get the current logged-in user from NextAuth session * This works by checking the database for the most recent session */ export declare function getCliSession(): Promise; //# sourceMappingURL=session-reader.d.ts.map