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