import * as React from 'react'; type SkeletonEffect = 'shimmer' | 'pulse' | 'none'; interface SkeletonProps extends React.ComponentProps<'div'> { /** * Animation played while the placeholder is visible. All effects honor `prefers-reduced-motion`. * @default 'shimmer' */ effect?: SkeletonEffect; } declare function Skeleton({ effect, className, ...props }: SkeletonProps): React.JSX.Element; export { Skeleton }; export type { SkeletonProps }; //# sourceMappingURL=skeleton.d.ts.map