import { Result } from "@webiny/feature/api"; import { ListTenantsUseCase as UseCaseAbstraction } from "./abstractions.js"; import { ListTenantsRepository } from "./abstractions.js"; import type { ListTenantsParams } from "../../../types/tenancy.js"; declare class ListTenantsUseCaseImpl implements UseCaseAbstraction.Interface { private repository; constructor(repository: ListTenantsRepository.Interface); execute(params?: ListTenantsParams): Promise>; } export declare const ListTenantsUseCase: import("@webiny/di").Implementation; export {};