import { Component as ComponentInterface, InterfaceDescriptor } from "../interfaces/interfaces"; export declare class Component implements ComponentInterface { readonly name: string; readonly interfaces: InterfaceDescriptor; private _configuration; get configuration(): {}; constructor(name: string, interfaces?: InterfaceDescriptor, configuration?: {}); getInterface(name: string): symbol; addConfiguration(c: {}): void; }