import type { CommonOptions } from './common'; /** * Define a group of tasks to be executed */ export declare function tasks(tasks: Task[], opts?: CommonOptions): Promise; export declare interface Task { title: string task: (message: (string: string) => void) => string | Promise | void | Promise enabled?: boolean }