export declare function getWorkspacePath(customPath?: string): string; export declare function createPathResolver(extensionDir: string, workspaceDir: string): (input: string) => string; /** * Resolve a path to absolute, supporting ~ home directory and cwd-relative paths. */ export declare function resolveToCwd(path: string, cwd: string): string;