import { type OpenTaskListOptions, type TaskList } from "../../task-list/dist/index.js"; import type { MaestroEvent } from "./index.js"; export interface RunMaestroTickOptions { configPath?: string; name?: string; task: string; transition: string; list?: string; onEvent?: (event: MaestroEvent) => void; now?: () => Date; dryRun?: boolean; openTaskList?: (options: OpenTaskListOptions) => Promise; } export declare function runMaestroTick(options: RunMaestroTickOptions): Promise;