import { FC } from 'react'; import type { ResponsiveValue } from '@shopify/restyle'; import type { Animated } from 'react-native'; import type { Theme } from '../../theme/theme'; export declare const LoadingDot: FC<{ colorDot?: ResponsiveValue; index: number; count: number; progress: Animated.Value; size?: 'normal' | 'small'; }>;