import { Item } from "@terrestrialorigin/core"; export declare class Task implements Item { id?: string; name?: string; description?: string; active?: boolean; created?: Date; modified?: Date; parents?: string[]; /** Reference to the TaskTemplate that this task was created from. */ templateRef?: string | null; startDate?: Date; endDate?: Date; constructor(name?: string, description?: string, startDate?: Date, endDate?: Date, templateRef?: string); toString(): string; }