import { DeleteTenantRepository as RepositoryAbstraction } from "./abstractions.js"; import { DeleteTenantGateway } from "./abstractions.js"; import { TenantCache } from "../shared/abstractions.js"; export declare class DeleteTenantRepositoryImpl implements RepositoryAbstraction.Interface { private gateway; private cache; constructor(gateway: DeleteTenantGateway.Interface, cache: TenantCache.Interface); getById(id: string): Promise; delete(id: string): Promise; } export declare const DeleteTenantRepository: import("@webiny/di").Implementation;