export = GithubClientTemplateSource; declare class GithubClientTemplateSource extends LocalFolderTemplateSource { /** * Parse the github address to get repo and org names * * @param {string} repo Template repository address * @returns {object} An object containing the org and repo names */ static parseRepoAddress(repo: string): object; /** * Checks if the GH client is installed and authenticated * * @returns {Promise} True if the authentication is ok. */ static checkGhClient(): Promise; } import LocalFolderTemplateSource = require("../local-folder-template-source/local-folder-template-source");