export declare const resolve: (packageName: string, base: URL, counter?: number) => URL; export declare const getPkgJsonDir: (dir: URL) => URL; export declare const getAppDir: (dir?: URL) => URL; export declare const getCliDir: () => URL; export declare const getCliViteDir: (cliDir: URL) => URL; export declare const getSrcDir: (appDir: URL) => URL; export declare const getCwd: () => URL; export declare const parsePath: (path: string, basePath: URL) => URL | undefined; export declare const getProjectURLs: (appDir: URL, cliDir: URL) => { src: (path: string) => URL; app: (path: string) => URL; cli: (path: string) => URL; };