/** * The URL a directory under the routes root is served at: `/docs/intro` * becomes `/docs/intro`. The routes root itself becomes `/`. */ export declare function urlFor(routesDir: string, dir: string): string; /** * The docs URL base, e.g. `/docs`, from the content directory's location under * the routes directory. The same mapping a page's own directory goes through, so * a page at `/docs/intro/+page.md` is served at `/docs/intro` under a * base of `/docs`. */ export declare function docsBaseFrom(routesDir: string, contentDir: string): string;