import { Process } from "../process"; import { RollType } from "./deltaState"; import { StateItem } from "./stateItem"; export declare class ObjectState extends StateItem { typeName: string; protected _object: any; get object(): any; constructor(object: any, oldObj: any, newObj: any); protected swapData(): void; roll(process: Process, rollType: RollType): void; }