import type { ComponentSupportInterface } from './ComponentSupportInterface'; export type ComponentParams = ConstructorParameters[0]; export declare class BaseComponent { protected owner: T; constructor({ owner }: { owner: T; }); cleanup?: () => void; }