import { type ExplorerConfig } from "../../toolcraft-design/dist/index.js"; import type { Task, TaskList } from "../../task-list/dist/index.js"; export interface BuildMaestroExplorerConfigOptions { tasks: readonly Task[]; taskList: TaskList; variables: Record; onRefresh: () => Promise; } export declare function buildMaestroExplorerConfig(options: BuildMaestroExplorerConfigOptions): ExplorerConfig;