9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import React from 'react';
|
|
export declare const AddLocationModal: ({ isOpen, onClose, tourId, initialLegId, editingLocation }: {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
tourId: string;
|
|
initialLegId?: string;
|
|
editingLocation?: any;
|
|
}) => React.JSX.Element;
|