import { type LockExpression } from './lock-art.js'; /** Pre-built completion summaries shared by CLI and Dashboard adapters. */ export declare function renderCompletionSummary(success: boolean, summary?: string): string; export interface SummaryBoxItem { type: 'done' | 'pending' | 'error'; text: string; } export interface SummaryBoxOptions { expression: LockExpression; title: string; items?: SummaryBoxItem[]; footer?: string; } /** * Render a branded summary box with the WorkOS lock character, * a title, optional checklist items, and an optional footer. */ export declare function renderSummaryBox(options: SummaryBoxOptions): string;