import { SkillsBrowsePanel } from './panels/SkillsBrowsePanel'; import { GlobalSkillsPanel, type GlobalSkillsPanelProps } from './panels/GlobalSkillsPanel'; import { type SkillDetailPanelProps } from './panels/SkillDetailPanel'; import { AgenticResourcesPanel } from './panels/AgenticResourcesPanel'; import type { PanelDefinition } from '@principal-ade/panel-framework-core'; import type { Skill } from './panels/skills/hooks/useSkillsData'; export type { SkillDetailPanelProps, GlobalSkillsPanelProps, Skill }; export { SkillsBrowsePanel, GlobalSkillsPanel, AgenticResourcesPanel }; /** * Export array of panel definitions. * This is the required export for panel extensions. */ export declare const panels: Array; /** * Optional: Called once when the entire package is loaded. * Use this for package-level initialization. */ export declare const onPackageLoad: () => Promise; /** * Optional: Called once when the package is unloaded. * Use this for package-level cleanup. */ export declare const onPackageUnload: () => Promise; //# sourceMappingURL=index.d.ts.map