import { ListTenantsRepository as RepositoryAbstraction } from "./abstractions.js"; import { ListTenantsGateway } from "./abstractions.js"; import type { ListTenantsParams } from "../../../types/tenancy.js"; declare class ListTenantsRepositoryImpl implements RepositoryAbstraction.Interface { private gateway; constructor(gateway: ListTenantsGateway.Interface); list(params?: ListTenantsParams): Promise; } export declare const ListTenantsRepository: import("@webiny/di").Implementation; export {};