/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ export interface OrgInfo { orgId: string; apiVersion: string; instanceUrl: string; rawInstanceUrl: string; username: string; accessToken: string; orgAlias?: string; } /** * Get Salesforce org info and authentication details * * @param orgAlias - Optional org alias or username, uses default org if not provided * @returns Promise resolving to org info or null if authentication fails */ export declare function getOrgInfo(orgAlias?: string): Promise; /** * Refresh Salesforce org authentication * * @param orgAlias */ export declare function refreshOrgAuth(orgAlias: string): Promise; //# sourceMappingURL=org.d.ts.map