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