import { RuntimeTenant as Abstraction } from "./abstractions.js"; import { TenantContext } from "@webiny/api-core/exports/api/tenancy.js"; declare class RuntimeTenantImpl implements Abstraction.Interface { private tenantContext; constructor(tenantContext: TenantContext.Interface); assign(obj: T): T; } export declare const RuntimeTenant: typeof RuntimeTenantImpl & { __abstraction: import("@webiny/di").Abstraction; }; export {};