import { type ComponentType, type ReactNode } from "react";
export declare function Routes({ BkndWrapper, basePath, children, }: {
    BkndWrapper: ComponentType<{
        children: ReactNode;
    }>;
    basePath?: string;
    children?: ReactNode;
}): import("react/jsx-runtime").JSX.Element;
