import React from 'react'; import type { PanelComponentProps, AgentPanelActions, SkillsPanelContext } from '../types'; export interface GlobalSkillsPanelProps extends PanelComponentProps { /** * When true, shows the refresh button and enables refresh functionality. * The host must support handling 'skills:refresh' events. */ supportsRefresh?: boolean; } /** * GlobalSkillsPanel - A panel for displaying ONLY global Agent Skills * * This panel shows: * - List/grid of global skills only (no project skills) * - Search functionality to filter skills * - Skill metadata (name, description, capabilities) * - Click to select and emit events for detail views * * Use this panel when you want to show only global skills without a project/global filter toggle. * This is ideal for views that are specifically about browsing and managing global skill installations. */ export declare const GlobalSkillsPanel: React.FC; //# sourceMappingURL=GlobalSkillsPanel.d.ts.map