import { GarItem } from './gar-item'; export declare namespace NormDocType { interface Data { /** @description Identifier of the type of normative document */ readonly id: number; /** @description Name */ readonly name: string; /** @description Record validity start date */ readonly startDate: Date; /** @description Record validity end date */ readonly endDate: Date; } } /** @description Information on the type of normative document */ export declare class NormDocType extends GarItem<'NormDocType', NormDocType.Data> { static readonly SCHEMA: GarItem.Schema; readonly type = "NormDocType"; protected get schema(): GarItem.Schema; }