export type Id = string; type EntityId = string; export type DeprecatedId = Id; export type DeprecatedNumber = number; export type DeprecatedString = string; declare class BaseEntity { id?: I; createdAt?: string; updatedAt?: string; deletedAt?: string; constructor(props?: Partial); toString(): string; } export declare class Base extends BaseEntity, Id> { tenantId?: Id; readonly _apiBase?: string; static assignInConstructor(classIns: any, props?: any): void; constructor(props?: Partial>); } export type TimeUnit = 'NANOSECONDS' | 'MICROSECONDS' | 'MILLISECONDS' | 'SECONDS' | 'MINUTES' | 'HOURS' | 'DAYS' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR'; export declare const LengthUnitList: LengthUnit[]; export type LengthUnit = 'METER' | 'CENTIMETER' | 'MILLIMETER' | 'INCH'; export declare const getLengthUnitDesc: (l: LengthUnit) => string; export declare const getVolumeUnitDesc: (l: LengthUnit) => string; export {};