import type { Square } from 'chess.js'; import React from 'react'; import Animated from 'react-native-reanimated'; declare type PlaceholderDotProps = { x: number; y: number; selectableSquares: Animated.SharedValue; moveTo?: (to: Square) => void; }; declare const PlaceholderDot: React.FC; export { PlaceholderDot };