import type { SkeletonVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
interface SkeletonRootProps extends Omit<ComponentPropsWithRef<"div">, "children">, SkeletonVariants {
}
declare const SkeletonRoot: ({ animationType, className, ...props }: SkeletonRootProps) => import("react/jsx-runtime").JSX.Element;
export { SkeletonRoot };
export type { SkeletonRootProps };
