import { ICommonsSecondClass } from 'tscommons-models'; import { ICommonsUniquelyIdentified } from 'tscommons-models'; import { ICommonsManaged } from 'tscommons-models-adamantine'; import { INamespace } from './inamespace'; import { IIsDeleted } from './iis-deleted'; export interface IEvent extends ICommonsManaged, ICommonsSecondClass, ICommonsUniquelyIdentified, IIsDeleted { namespace: number; start: Date; end: Date; description?: string; isLocked: boolean; } export declare function isIEvent(test: unknown): test is IEvent;