/**
 * Given a path, which may be a local path, produce a fully qualified URL
 * @example '/path' -> 'http://example.com/path'
 * @example 'some/local/path' -> 'http://example.com/current_path/some/local/path'
 * @param {string} path
 * @return {string}
 */
export function convertPathToURL(path: string): string;
//# sourceMappingURL=convertPathToURL.d.ts.map