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