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