import type { AssistantMessage } from "@caupulican/pi-ai"; export interface RuntimeStatusPresentation { hasHumanAudience: boolean; currentLabel: string | undefined; loadingAnimation: { setMessage(message: string): void; } | undefined; activityLane: { update(id: string, label: string): void; } | undefined; requestRender(): void; } export declare function applyRuntimeStatusLabel(presentation: RuntimeStatusPresentation, label: string): string | undefined; export declare function resolveHiddenThinkingStatus(message: AssistantMessage, hideThinkingBlock: boolean, hiddenThinkingLabel: string, workingLabel: string): string; //# sourceMappingURL=runtime-status.d.ts.map