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