import type { WorkflowEntry } from "./workflow-catalog.ts"; export interface WorkflowOptionDisplay { readonly name: string; readonly description?: string; } /** Normalize one workflow's display fields and optionally include its full source filename. */ export declare function workflowOptionDisplay(entry: WorkflowEntry, showFile?: boolean): WorkflowOptionDisplay; /** Plain-text form used by native dialogs; the TUI styles the same display fields separately. */ export declare function workflowOptionLabel(entry: WorkflowEntry, showFile?: boolean): string; //# sourceMappingURL=workflow-display.d.ts.map