import type { AccountManagerOrganization } from '@salesforce/b2c-tooling-sdk'; interface OrgResolver { getOrg(orgId: string): Promise; getOrgByName(name: string): Promise; } /** * Resolves an organization identifier (ID or friendly name) to an org ID. * Tries by ID first, then falls back to name lookup. */ export declare function resolveOrgId(client: OrgResolver, orgIdOrName: string): Promise; export {};