import { GarItem } from './gar-item'; export declare namespace AddressObjectType { interface Data { /** @description Unique identifier of the record */ readonly id: number; /** @description Address object level */ readonly level: number; /** @description Short name of the address object type */ readonly shortName: string; /** @description Full name of the address object type */ readonly name: string; /** @description Description */ readonly description?: string; /** @description Date of entry or update of the record */ readonly updatedDate: Date; /** @description Start of record validity */ readonly startDate: Date; /** @description End of record validity */ readonly endDate: Date; /** @description Activity status */ readonly isActive: boolean; } } /** @description Information about the address object type */ export declare class AddressObjectType extends GarItem<'AddressObjectType', AddressObjectType.Data> { static readonly SCHEMA: GarItem.Schema; readonly type = "AddressObjectType"; protected get schema(): GarItem.Schema; }