import { GarItem } from './gar-item'; export declare namespace ChangeHistoryItem { interface Data { /** @description Identifier of the changing transaction */ readonly changeId: number; /** @description Global unique identifier of the address object */ readonly objectId: number; /** @description Global unique identifier of the changing transaction ID */ readonly addrObjectId: string; /** @description Action status ID */ readonly operationTypeId: number; /** @description Regulatory document identifier */ readonly nDocId?: number; /** @description Change date */ readonly changeDate: Date; } } /** @description Information about change history event */ export declare class ChangeHistoryItem extends GarItem<'ChangeHistoryItem', ChangeHistoryItem.Data> { static readonly SCHEMA: GarItem.Schema; readonly type = "ChangeHistoryItem"; protected get schema(): GarItem.Schema; }