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