import { ICommand } from '@nestjs/cqrs'; export declare class UserDeleteCommand implements ICommand { readonly userId: string; static readonly type = "[User] Account Delete"; constructor(userId: string); }