export type ToolCategory = 'core' | 'fs' | 'runtime' | 'sessions' | 'memory' | 'web' | 'media' | 'automation' | 'browser' | 'productivity';
export interface AvailableTool {
    name: string;
    label: string;
    description: string;
    category: ToolCategory;
    locked: boolean;
}
export declare const LOCKED_TOOL_NAMES: readonly ["session_status", "sessions_history", "sessions_list", "sessions_send"];
export declare const LOCKED_SET: Set<string>;
export declare const STATIC_AVAILABLE_TOOLS: AvailableTool[];
export declare const AVAILABLE_TOOL_NAMES: Set<string>;
export declare const EMPLOYEE_BASELINE_TOOLS: readonly string[];
export declare const CATEGORY_LABELS: Record<ToolCategory, string>;
