import type { ComponentPropsWithoutRef } from 'react'; type SkeletonAnimation = 'none' | 'pulse'; type SkeletonProps = ComponentPropsWithoutRef<'div'> & { animation?: SkeletonAnimation; }; declare function Skeleton({ animation, className, ...props }: SkeletonProps): import("react/jsx-runtime").JSX.Element; export type { SkeletonAnimation, SkeletonProps }; export default Skeleton;