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 {};
