import type { TMurypRoutes } from '../types/global';
type TReturn = {
    router: TMurypRoutes | undefined;
    params: {
        [key: string]: string;
    };
};
export default function findRoutes(url: string[], index: number, routes: TMurypRoutes, params?: {
    [key: string]: string;
}): TReturn;
export {};
