6 lines
221 B
TypeScript
6 lines
221 B
TypeScript
import React from 'react';
|
|
export declare const ItineraryTimeline: ({ onAddLocation, onEditLocation }: {
|
|
onAddLocation?: (legId: string) => void;
|
|
onEditLocation?: (location: any) => void;
|
|
}) => React.JSX.Element;
|