import { Item } from "@terrestrialorigin/core"; import { EventType } from "./EventType"; import { DerivationMethod } from "./DerivationMethod"; export declare class TaskTemplate implements Item { id?: string; name?: string; description?: string; active?: boolean; created?: Date; modified?: Date; parents?: string[]; eventType?: EventType; derivationMethod?: DerivationMethod; constructor(name?: string, description?: string, eventType?: EventType, derivationMethod?: DerivationMethod); toString(): string; }