import { DEFAULT_WIDGET_ORDER } from './types.js'; import type { Widget, WidgetContext, WidgetId } from './types.js'; export type { Widget, WidgetContext, WidgetId }; export { DEFAULT_WIDGET_ORDER }; /** Registry of all available widgets by id */ export declare const WIDGET_REGISTRY: Record; /** Render an ordered list of widgets into a single line, joined by separator. */ export declare function renderWidgetLine(widgetIds: WidgetId[], ctx: WidgetContext): string; /** Resolve widget order from config, falling back to defaults. Unknown IDs are dropped. */ export declare function resolveWidgetOrder(configWidgets?: string[]): WidgetId[];