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