import { Constructor } from "./types"; import { Base } from "./Base"; import { Plugin } from "./Plugin"; export declare class Component extends Base { plugins: Record, any, any>>; constructor(options?: Partial); attachPlugins(Plugins?: Record, any, any>>>): void; detachPlugins(Plugins?: string[]): this; }