import { GarItem } from './gar-item'; export declare namespace Stead { interface Data { /** @description Unique record identifier. Key field (ID) */ readonly id: number; /** @description Global unique identifier of the object (OBJECTID) */ readonly objectId: number; /** @description Global unique identifier of the object (OBJECTGUID) */ readonly objectGuid: string; /** @description Identifier of the changing transaction (CHANGEID) */ readonly changeId: number; /** @description Land plot number (NUMBER) */ readonly number?: string; /** @description Record action status (OPERTYPEID) */ readonly operationTypeId: number; /** @description Identifier of the record linking to the previous historical record (PREVID) */ readonly prevId?: number; /** @description Identifier of the record linking to the subsequent historical record (NEXTID) */ readonly nextId?: number; /** @description Record update date (UPDATEDATE) */ readonly updateDate: Date; /** @description Record start date (STARTDATE) */ readonly startDate: Date; /** @description Record end date (ENDDATE) */ readonly endDate: Date; /** @description Address object relevance indicator (ISACTUAL) */ readonly isActual: boolean; /** @description Active address object indicator (ISACTIVE) */ readonly isActive: boolean; } } /** @description Land plot information */ export declare class Stead extends GarItem<'Stead', Stead.Data> { static readonly SCHEMA: GarItem.Schema; readonly type = "Stead"; protected get schema(): GarItem.Schema; }