import type { Components, JSX } from "../types/components";

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