/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ interface User { id: string; name: string; } /** * Fetch current user information from Salesforce * Uses Chatter API to get current user details * @returns User info or null if no session */ export declare function getCurrentUser(): Promise; export {}; //# sourceMappingURL=user.d.ts.map