import { NavigationProps } from '@bluebase/components'; import React from 'react'; export type getStateFromPathConfigFn = (defaultState: any, path: string, options?: any) => any; export type getPathFromStateConfigFn = (defaultPath: string, state: any, options?: any) => any; /** * Navigation (V5) * This serves as an entry point where BlueBase passes routes and navigation * configs to this component. */ export declare const Navigation: { (props: NavigationProps): React.JSX.Element; displayName: string; };