import type { Tenant } from "../../../types/tenancy.js"; export interface ITenantCache { get(id: string): Promise; getMany(ids: readonly string[]): Promise; clear(id: string): void; prime(id: string, tenant: Tenant | undefined): void; } export declare const TenantCache: import("@webiny/di").Abstraction; export declare namespace TenantCache { type Interface = ITenantCache; }