import React from 'react'; import type { ViewProps } from 'react-native'; interface SkeletonProps extends ViewProps { /** * Intent of the component. */ intent?: 'light' | 'dark'; /** * Variant of the component. */ variant?: 'circular' | 'rectangular' | 'rounded'; } declare const Skeleton: ({ intent, variant, style, onLayout, ...props }: SkeletonProps) => React.JSX.Element; export default Skeleton;