import { IUser } from '@metad/contracts'; import { ICommand } from '@nestjs/cqrs'; export declare class UserOrganizationCreateCommand implements ICommand { readonly user: IUser; readonly organizationId: string; static readonly type = "[UserOrganization] Create"; constructor(user: IUser, organizationId: string); }