import { Result } from "@webiny/feature/api"; import { ListRolesUseCase as UseCaseAbstraction } from "./abstractions.js"; import { RolesRepository } from "../shared/abstractions.js"; import { IdentityContext } from "../../IdentityContext/abstractions.js"; import type { Role, ListRolesInput } from "../shared/types.js"; declare class ListRolesUseCaseImpl implements UseCaseAbstraction.Interface { private repository; private identityContext; constructor(repository: RolesRepository.Interface, identityContext: IdentityContext.Interface); execute(params?: ListRolesInput): Promise>; } export declare const ListRolesUseCase: import("@webiny/di").Implementation; export {};