/**
 * Get the region and shard from a token and entitlement
 * @param token The auth token
 * @param idToken The ID token
 */
export declare function getRegion(token: string, idToken: string): Promise<{
    region: string;
    shard: string;
}>;
