import { IOrganizationUpdateInput } from '@metad/contracts'; import { ICommand } from '@nestjs/cqrs'; export declare class OrganizationUpdateCommand implements ICommand { readonly input: IOrganizationUpdateInput; static readonly type = "[Organization] Update"; constructor(input: IOrganizationUpdateInput); }