import { SessionState } from '../types/index.js'; export declare const STATUS_ICONS: { readonly BUSY: "●"; readonly WAITING: "◐"; readonly IDLE: "○"; }; export declare const STATUS_LABELS: { readonly BUSY: "Busy"; readonly WAITING: "Waiting"; readonly PENDING_AUTO_APPROVAL: "Pending Auto Approval"; readonly IDLE: "Idle"; }; export declare const STATUS_TAGS: { readonly BACKGROUND_TASK: "\u001B[2m[BG]\u001B[0m"; }; export declare const getBackgroundTaskTag: (count: number) => string; export declare const getTeamMemberTag: (count: number) => string; export declare const MENU_ICONS: { readonly NEW_WORKTREE: "⊕"; readonly NEW_SESSION: "⊕"; readonly RENAME_SESSION: "✎"; readonly MERGE_WORKTREE: "⇄"; readonly DELETE_WORKTREE: "✕"; readonly KILL_SESSION: "✕"; readonly CONFIGURE_SHORTCUTS: "⌨"; readonly EXIT: "⏻"; }; export declare const getStatusDisplay: (status: SessionState, backgroundTaskCount?: number, teamMemberCount?: number) => string;