import type { PathResolver } from '../types/path-resolver.js'; export declare class DefaultPathResolver implements PathResolver { readonly projectRoot: string; readonly cwd: string; constructor(cwd?: string); detectProjectRoot(start: string): string; resolve(input: string): string; isInsideRoot(absPath: string): boolean; ensureInsideRoot(absPath: string): string; } //# sourceMappingURL=path-resolver.d.ts.map