import React from 'react'; import type { PolylineProps } from '../../bare'; export declare const Polyline: React.MemoExoticComponent>; export type AnimatedPolylineRef = { animate: (point: number, duration?: number, ignoreMiddlePoints?: boolean) => Promise; reset: () => void; }; export type AnimationPrimitive = { animationValue: number; inputRange: Array; outputRange: Array; }; export type AnimatedPolylineAnimationProp = { color?: AnimationPrimitive; width?: AnimationPrimitive; }; export declare const AnimatedPolyline: React.MemoExoticComponent>>; //# sourceMappingURL=polyline.component.d.ts.map