import { IComponentNodesPool } from './Interface'; export declare class NodesPool { componentNodes: IComponentNodesPool; /** * Initialize to get all nodes */ initialize(): Promise; /** * Recursive function to get node files * @param {string} dir * @returns {string[]} */ getFiles(dir: string): Promise; }