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