import { ListTenantsGateway as GatewayAbstraction } from "./abstractions.js"; import type { ListTenantsParams } from "../../../types/tenancy.js"; import { TenancyStorageOperations } from "../../../features/tenancy/shared/storageOperations.js"; declare class ListTenantsGatewayImpl implements GatewayAbstraction.Interface { private storageOperations; constructor(storageOperations: TenancyStorageOperations.Interface); listTenants(params?: ListTenantsParams): Promise; } export declare const ListTenantsGateway: import("@webiny/di").Implementation; export {};