import React from 'react'; import { ColorValue } from 'react-native'; import { endPointAnimationFunction } from './animations/animations'; declare function EndPoint({ x, y, radius, color, animated, endPointAnimation, }: { x: number; y: number; radius: number; color: ColorValue; animated: boolean; endPointAnimation: endPointAnimationFunction; }): React.JSX.Element; export default EndPoint; //# sourceMappingURL=EndPoint.d.ts.map