import { GarItem } from './gar-item'; export declare namespace AddressObjectDivision { interface Data { /** @description Unique identifier of the record. PK field */ readonly id: number; /** @description Global unique identifier of the parent address object */ readonly parentId: number; /** @description Global unique identifier of the child address object */ readonly childId: number; /** @description ID of the transaction that changed the record */ readonly changeId: number; } } /** @description Address object division data. */ export declare class AddressObjectDivision extends GarItem<'AddressObjectDivision', AddressObjectDivision.Data> { static readonly SCHEMA: GarItem.Schema; readonly type = "AddressObjectDivision"; protected get schema(): GarItem.Schema; }