/** * schedule-menu.ts — `/agents → Scheduled jobs` submenu. * * Upgraded premium dashboard view: lists scheduled jobs in an elegant * columnar grid table with status indicators, execution counts, success * reliability heatmaps, color-coded relative urgency, and beautifully * formatted card borders for job inspection and cancellation. */ import type { ExtensionCommandContext } from "@earendil-works/pi-coding-agent"; import type { SubagentScheduler } from "../schedule.js"; /** * List scheduled jobs; selecting one opens a cancel-confirm with details. * Returns when the user backs out or after a cancellation. */ export declare function showSchedulesMenu(ctx: ExtensionCommandContext, scheduler: SubagentScheduler): Promise;