/// import { NavigateType } from '../../types'; export interface Props { path: AMap.LocationValue[]; type: NavigateType; navigateOptions?: { [key: string]: any; }; onComplete?: (res: any) => any; } declare function Navigate(props: Props): null; export default Navigate;