import { GarItem } from './gar-item'; export declare namespace RegistryObjectsItem { interface Data { /** @description Unique identifier of the address object */ readonly objectId: number; /** @description Global unique identifier of the address object */ readonly objectGuid: string; /** @description Identifier of the changing transaction */ readonly changeId: number; /** @description Active object indicator */ readonly isActive: boolean; /** @description Object level */ readonly levelId: number; /** @description Creation date */ readonly createDate: Date; /** @description Modification date */ readonly updateDate: Date; } } /** @description Information on registry element */ export declare class RegistryObjectsItem extends GarItem<'RegistryObjectsItem', RegistryObjectsItem.Data> { static readonly SCHEMA: GarItem.Schema; readonly type = "RegistryObjectsItem"; protected get schema(): GarItem.Schema; }