import * as React from 'react'; import { View } from 'react-native'; type SkeletonProps = React.ComponentProps & React.RefAttributes; /** * Web-only Skeleton implementation. * Uses Tailwind's `animate-pulse` class (a pure-CSS opacity cycle) instead of * pulling in react-native-reanimated, which doesn't play nicely with Vite + * react-native-web. The native sibling (`skeleton.tsx`) keeps the reanimated * version for iOS/Android. */ declare function Skeleton({ className, ...props }: SkeletonProps): import("react/jsx-runtime").JSX.Element; export { Skeleton }; export type { SkeletonProps }; //# sourceMappingURL=skeleton.web.d.ts.map