import { ComponentInterface } from "../ComponentInterface"; import { Source } from "../Source"; /** * Component that resolves its source from the filesystem. * * @class */ export declare class ComponentFilesystem implements ComponentInterface { private readonly _path; /** * @param path {string} The name of the component */ constructor(path: string); /** * Return the name of the component. */ readonly path: string; /** * @param {string} entry * @returns {Promise} */ getSource(entry: string): Promise; }