/** * Runtime attestation (ADR 0005 H9). Declares the implementation status * of each runtime export in this module. See CONTRIBUTING.md ยง Module * attestations for the category definitions and the convention for * updating these when sync or rebrand changes the surface. */ export declare const MODULE_ATTESTATIONS: { readonly resolveToolDisplay: "live"; readonly formatToolDetail: "live"; readonly formatToolSummary: "live"; }; export type ToolDisplay = { name: string; emoji: string; title: string; label: string; verb?: string; detail?: string; }; export declare function resolveToolDisplay(params: { name?: string; args?: unknown; meta?: string; }): ToolDisplay; export declare function formatToolDetail(display: ToolDisplay): string | undefined; export declare function formatToolSummary(display: ToolDisplay): string;