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