export { navigate, reload } from './navigate.js';
export { prefetch } from './prefetch.js';
export { getPageContextClient } from './renderPageClientSide.js';
export { PROJECT_VERSION as version } from './utils.js';
import type { PageContextBuiltInClientWithClientRouting } from '../../shared/types.js';
/** @deprecated
 * Replace:
 *   ```
 *   import type { PageContextBuiltInClient } from 'vite-plugin/client/router'
 *   ```
 * With:
 *   ```
 *   import type {
 *     PageContextBuiltInClientWithClientRouting as
 *     PageContextBuiltInClient
 *   } from 'vike/types'
 *   ```
 */
type PageContextBuiltInClient<Page = any> = PageContextBuiltInClientWithClientRouting<Page>;
export type { PageContextBuiltInClient };
