/** * Utility class that implements the commands exposed by the Cicero CLI. * @class * @memberof module:cicero-cli */ export declare class Commands { /** * Whether the template path is to a file (template archive) * @param {string} templatePath - path to the template directory or archive * @return {boolean} true if the path is to a file, false otherwise */ static isTemplateArchive(templatePath: any): boolean; /** * Return a promise to a template from either a directory or an archive file * @param {string} templatePath - path to the template directory or archive * @param {Object} [options] - an optional set of options * @return {Promise