import { RouteTemplateBeanDefinition } from '@kaoto-next/camel-catalog/types'; import { EntityType, BaseCamelEntity } from '../../camel/entities'; export type RouteTemplateBeansParentType = { beans: Partial[]; }; export declare class RouteTemplateBeansEntity implements BaseCamelEntity { parent: RouteTemplateBeansParentType; readonly id: string; type: EntityType; constructor(parent: RouteTemplateBeansParentType); toJSON(): { beans: Partial[]; }; updateModel(): void; }