/// import { ChangeEntityTypeEnum } from '@novu/shared'; import { Document } from 'mongoose'; import { EnvironmentWithUserCommand } from '../../commands'; export interface IItem extends Pick { [key: string]: any; } export declare class CreateChangeCommand extends EnvironmentWithUserCommand { item: IItem; type: ChangeEntityTypeEnum; changeId: string; parentChangeId?: string; } //# sourceMappingURL=create-change.command.d.ts.map