import { type WithElementRef } from "../../../utils.js"; import type { HTMLAttributes } from "svelte/elements"; type Props = WithElementRef> & { class?: string; }; declare const Skeleton: import("svelte").Component; type Skeleton = ReturnType; export default Skeleton;