import type { TaskType } from './taskType'; /** * A task object. */ export declare type Task = { /** * The id of the task. */ id: string; type: TaskType; }; //# sourceMappingURL=task.d.ts.map