import { GarItem } from './gar-item'; export declare namespace CarPlace { interface Data { /** @description Unique record identifier. Key field */ readonly id: number; /** @description Global unique object identifier */ readonly objectId: number; /** @description Global unique object identifier (UUID) */ readonly objectGuid: string; /** @description Identifier of the changing transaction */ readonly changeId: number; /** @description Car place number */ readonly number: string; /** @description Record action status */ readonly operationTypeId: number; /** @description Identifier of the record linking to the previous historical record */ readonly prevId?: number; /** @description Identifier of the record linking to the subsequent historical record */ readonly nextId?: number; /** @description Record entry (update) date */ readonly updateDate: Date; /** @description Record validity start */ readonly startDate: Date; /** @description Record validity end */ readonly endDate: Date; /** @description FIAS address object relevance status */ readonly isActual: boolean; /** @description Active address object indicator */ readonly isActive: boolean; } } /** @description Information about car place */ export declare class CarPlace extends GarItem<'CarPlace', CarPlace.Data> { static readonly SCHEMA: GarItem.Schema; readonly type = "CarPlace"; protected get schema(): GarItem.Schema; }