declare const AnimatedShape_base: any; /** * AnimatedShape can be used to display an animated LineString, FeatureCollection, Point, or other struture inside the shape property. * @example * const animatedLon = useRef(new Animated.Value(-73.984638)).current; * const animatedLat = useRef(new Animated.Value(40.759211)).current; * const animatedShape = new AnimatedShape({ * type: 'LineString', * coordinates: [animatedLon, animatedLat], * }); * return */ export class AnimatedShape extends AnimatedShape_base { [x: string]: any; constructor(shape: any); shape: any; _walkShapeAndGetValues(value: any): any; __getValue(): any; _walkAndProcess(value: any, cb: any): void; __attach(): void; __detach(): void; } export default AnimatedShape; //# sourceMappingURL=AnimatedShape.d.ts.map