import { Entity } from './Entity'; import { Property } from './Property'; interface EventConstructorProps { name: string; properties: { [index: string]: Omit; }; unique: string[]; } export declare class Event extends Entity { constructor(props: EventConstructorProps); } export {};