import React from 'react'; import type { RouteInfo } from '../utils/types'; import type { AnimatedPolylineAnimationProp } from './polyline.component'; import type { Point } from '../../bare'; type RouteProps = { route: RouteInfo; }; export declare const Route: React.MemoExoticComponent>; export type AnimatedRouteRef = { setRoute: (route: RouteInfo) => void; animate: (section: number, point: number, duration?: number, onNextAnimationTick?: (point: Point, duration: number) => Promise, abortRef?: React.RefObject) => void; reset: () => void; }; export declare const AnimatedRoute: React.MemoExoticComponent>>; export {}; //# sourceMappingURL=route.component.d.ts.map