export interface IReplayStateDeltaTemplateId { readonly packageId?: string; readonly moduleName?: string; readonly entityName?: string; } export declare class ReplayStateDelta { readonly kind: string; readonly eventOrdinal?: number; readonly comparisonKey?: string; readonly createdContractId?: string; readonly targetContractId?: string; readonly templateId?: IReplayStateDeltaTemplateId; readonly choice?: string; readonly choiceArgument?: unknown; readonly payload?: unknown; readonly consuming?: boolean; constructor(init: { kind: string; eventOrdinal?: number; comparisonKey?: string; createdContractId?: string; targetContractId?: string; templateId?: IReplayStateDeltaTemplateId; choice?: string; choiceArgument?: unknown; payload?: unknown; consuming?: boolean; }); }