import { BaseTemplateManager, Template } from "@igniteui/cli-core"; export declare class TemplateManager extends BaseTemplateManager { constructor(templatesPath?: string); /** * Loads properties from a JSON file and initializes a base Template implementation * @param filePath Path to a json config file representing a template * @returns null if no proper file is found */ protected loadFromConfig(filePath: string): Template; }