type RelativePathOptions = { allowRoot?: boolean; cwd?: string; boundaryLabel?: string; includeRootInError?: boolean; }; export declare function toRelativeWorkspacePath(root: string, candidate: string, options?: Pick): string; export declare function toRelativeSandboxPath(root: string, candidate: string, options?: Pick): string; export declare function resolvePathFromInput(filePath: string, cwd: string): string; export {};