import { GetTenantByIdUseCase as UseCaseAbstraction } from "./abstractions.js"; import { GetTenantByIdRepository } from "./abstractions.js"; declare class GetTenantByIdUseCaseImpl implements UseCaseAbstraction.Interface { private repository; constructor(repository: GetTenantByIdRepository.Interface); execute(id: string): UseCaseAbstraction.Result; } export declare const GetTenantByIdUseCase: import("@webiny/di").Implementation; export {};