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