import type { DOMRenderProps } from "../../utils/dom"; import type { SkeletonVariants } from "@heroui/styles"; import React from "react"; interface SkeletonRootProps extends DOMRenderProps { className?: string; /** Animation type. */ animationType?: SkeletonVariants["animationType"]; } declare const SkeletonRoot: ({ animationType, className, ...props }: SkeletonRootProps & Omit>) => import("react/jsx-runtime").JSX.Element; export { SkeletonRoot }; export type { SkeletonRootProps };