export declare type Id = 'string'; declare type EntityId = 'string'; export declare type DeprecatedId = Id; export declare type DeprecatedNumber = number; export declare 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; constructor(props?: Partial>); } export declare type TimeUnit = 'NANOSECONDS' | 'MICROSECONDS' | 'MILLISECONDS' | 'SECONDS' | 'MINUTES' | 'HOURS' | 'DAYS' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR'; export {};