import { Item } from "@terrestrialorigin/core"; /** * Dynamic event type. Different event types can be created by users to * classify events. */ export declare class EventType implements Item { id?: string; name?: string; description?: string; active?: boolean; created?: Date; modified?: Date; parents?: string[]; constructor(name?: string, description?: string); }