import * as React from 'react'; import type { SceneRendererProps } from './types'; export default function SceneMap(scenes: { [key: string]: React.ComponentType; }): ({ route, jumpTo, position }: SceneRendererProps & { route: any; }) => JSX.Element;