import { LenraComponent as IComponent } from "../gen/response.js"; export { IComponent }; export declare abstract class Component { protected model: T; constructor(model: T); toJSON(): T; protected setListener(event: string, name: string, props?: { [k: string]: unknown; }): this; static normalize(child: Component | T): T; }