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