import type { EntryStatus } from '../session/state.js'; export declare function statusBadge(status: EntryStatus): string; export declare function refLabel(ref: string): string; export declare function typeLabel(label: string): string; export declare function entryLabel(label: string): string; /** Emits an error. In JSON mode: {"ok":false,"error":"..."} to stderr. */ export declare function errorMsg(msg: string): void; /** Emits a warning. In JSON mode: {"warn":"..."} to stdout. */ export declare function warnMsg(msg: string): void; /** Emits a success result. In JSON mode: {"ok":true,"message":"..."} to stdout. */ export declare function successMsg(msg: string): void; /** Emits an informational/progress message. Suppressed in JSON mode. */ export declare function infoMsg(msg: string): void; //# sourceMappingURL=print.d.ts.map