import { Result } from "@webiny/feature/api"; import { DeleteRoleUseCase as UseCaseAbstraction } from "./abstractions.js"; import { RolesRepository } from "../shared/abstractions.js"; import { IdentityContext } from "../../IdentityContext/abstractions.js"; import { EventPublisher } from "../../../../features/eventPublisher/index.js"; declare class DeleteRoleUseCaseImpl implements UseCaseAbstraction.Interface { private repository; private identityContext; private eventPublisher; constructor(repository: RolesRepository.Interface, identityContext: IdentityContext.Interface, eventPublisher: EventPublisher.Interface); execute(id: string): Promise>; } export declare const DeleteRoleUseCase: import("@webiny/di").Implementation; export {};