UNPKG

@clerk/clerk-js

Version:
11 lines (10 loc) 402 B
import React from 'react'; export declare const VIRTUAL_ROUTER_BASE_PATH = "CLERK-ROUTER/VIRTUAL"; interface VirtualRouterProps { startPath: string; preservedParams?: string[]; onExternalNavigate?: () => void; children: React.ReactNode; } export declare const VirtualRouter: ({ startPath, preservedParams, onExternalNavigate, children, }: VirtualRouterProps) => JSX.Element; export {};