import { UpdateTenantGateway as GatewayAbstraction } from "./abstractions.js"; import { type Tenant } from "../../../types/tenancy.js"; import { TenancyStorageOperations } from "../../../features/tenancy/shared/storageOperations.js"; declare class UpdateTenantGatewayImpl implements GatewayAbstraction.Interface { private storageOperations; constructor(storageOperations: TenancyStorageOperations.Interface); updateTenant(data: Tenant): Promise; } export declare const UpdateTenantGateway: import("@webiny/di").Implementation; export {};