import type { Components, JSX } from "../types/components"; interface CSideNavigation extends Components.CSideNavigation, HTMLElement {} export const CSideNavigation: { prototype: CSideNavigation; new (): CSideNavigation; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;