import type { TrustedSkillResult } from '../agent/trusted-skill-result.js'; export interface TrustedSkillRegistryEntry { glyph: string; color: string; inFlightVerb: string; } export declare function registerTrustedSkill(name: string, entry: TrustedSkillRegistryEntry): void; export declare function clearRegistryForTesting(): void; export declare function getTrustedSkill(name: string): TrustedSkillRegistryEntry | undefined; export interface FormatTrustedSkillCompletionOpts { isTTY?: boolean; columns?: number; } export declare function formatTrustedSkillCompletion(result: TrustedSkillResult, opts?: FormatTrustedSkillCompletionOpts): string; export interface FormatTrustedSkillInFlightOpts { isTTY?: boolean; columns?: number; } export declare function formatTrustedSkillInFlight(skillName: string, opts?: FormatTrustedSkillInFlightOpts): string;