import type { OrgCredentials, OrgContext } from '../types.js'; export declare function resolveCredentials(orgAlias?: string): Promise; /** * Resolves full org context — alias, username, instance URL, isSandbox, API version, * and connection status — for the given org alias or the SF CLI default org. * * isSandbox is determined via SELECT IsSandbox FROM Organization LIMIT 1 * because sf org display --json does not return this field. * * The returned OrgContext MUST be passed through sanitiseObject() before * inclusion in any MCP tool response (Principle VI). */ export declare function resolveOrgContext(orgAlias?: string): Promise; //# sourceMappingURL=credential-resolver.d.ts.map