import type { WithSpringConfig } from 'react-native-reanimated'; /** * Spring animation configurations for the chessboard. * * These are critically damped springs (dampingRatio = 1) which means: * - No oscillation/bouncing * - Fastest approach to target without overshoot * - Formula: damping = 2 * sqrt(stiffness * mass) */ export declare const MOVE_SPRING: WithSpringConfig; export declare const SCALE_SPRING: WithSpringConfig; export declare const SNAP_BACK_SPRING: WithSpringConfig;