import { RequestContext } from '@loopback/rest'; import { MultiTenancyStrategy, Tenant } from '../types'; import { BaseStrategy } from './base-strategy'; /** * Use `host` to identify the tenant id */ export declare class HostStrategy extends BaseStrategy implements MultiTenancyStrategy { name: string; mapping: Record; identifyTenant(requestContext: RequestContext): Tenant | undefined; mapHostToTenant(host: string | undefined): Tenant | undefined; }