import { DeleteUserUseCase } from "../abstractions.js"; import { WcpContext } from "../../../../features/wcp/WcpContext/index.js"; declare class DeleteUserWithWcpDecrementImpl implements DeleteUserUseCase.Interface { private wcp; private decoratee; constructor(wcp: WcpContext.Interface, decoratee: DeleteUserUseCase.Interface); execute(id: string): Promise>; } export declare const DeleteUserWithWcpDecrement: typeof DeleteUserWithWcpDecrementImpl; export {};