import { GetTenantByIdGateway as GatewayAbstraction } from "./abstractions.js"; import { TenancyStorageOperations } from "../shared/storageOperations.js"; import type { Tenant } from "../../../types/tenancy.js"; declare class GetTenantByIdGatewayImpl implements GatewayAbstraction.Interface { private storageOperations; constructor(storageOperations: TenancyStorageOperations.Interface); getTenantById(id: string): Promise; } export declare const GetTenantByIdGateway: import("@webiny/di").Implementation; export {};