import type { GithubMetadata, Task } from "../types.js"; import type { CliOptions } from "./utils.js"; interface FormatTaskShowOptions { ancestors?: Task[]; children?: Task[]; grandchildren?: Task[]; full?: boolean; expand?: boolean; blockedByTasks?: Task[]; blocksTasks?: Task[]; ancestorGithub?: GithubMetadata; } /** * Format the detailed show view for a task with proper text wrapping. */ export declare function formatTaskShow(task: Task, options?: FormatTaskShowOptions): string; export declare function showCommand(args: string[], options: CliOptions): Promise; export {}; //# sourceMappingURL=show.d.ts.map