/**
 * Recursive mkdir (create parent directories if they do not exist).
 * @param {string} dirPath
 * @param {string} mode
 * @returns {Promise}
 */
declare function mkdirParent(dirPath: string, mode?: string): Promise<void>;
/**
 * @param {string} target
 * @param {string} currentDir
 * @returns {string}
 */
declare function toUriCompatibleRelativePath(target: string, currentDir: string): string;
/**
 * @param {string} _pathStr
 * @returns {string}
 */
declare function pathToUrl(_pathStr: string): string;
declare function getGithubSvg(): string;
export { getGithubSvg, mkdirParent, pathToUrl, toUriCompatibleRelativePath };
