export interface SideNavItem { label: string; href: string; active?: boolean; } import type { HTMLAttributes } from "svelte/elements"; type SideNavProps = Omit, "class"> & { items: SideNavItem[]; label?: string; class?: string; }; declare const SideNav: import("svelte").Component; type SideNav = ReturnType; export default SideNav; //# sourceMappingURL=SideNav.svelte.d.ts.map