export interface AnchorItem { id: string; label: string; } interface AnchorNavProps { items?: AnchorItem[]; activeId?: string; orientation?: 'vertical' | 'horizontal'; class?: string; onselect?: (id: string) => void; } declare const AnchorNav: import("svelte").Component; type AnchorNav = ReturnType; export default AnchorNav;