import type { JwtPayload } from './jsonwebtoken-type'; /** * Compare two decoded JWTs based on their `tenantId`s. * @param userTokenPayload - User JWT payload. * @param providerTokenPayload - Provider JWT payload. * @returns Whether the tenant is identical. * @internal */ export declare function isIdenticalTenant(userTokenPayload: JwtPayload, providerTokenPayload: JwtPayload): boolean;