import { BeansDeserializer } from '@kaoto-next/camel-catalog/types'; import { EntityType, BaseCamelEntity } from '../../camel/entities'; /** Very basic check to determine whether this object is a Beans */ export declare const isBeans: (rawEntity: unknown) => rawEntity is { beans: BeansDeserializer; }; export type BeansParentType = { beans: BeansDeserializer; }; export declare class BeansEntity implements BaseCamelEntity { parent: BeansParentType; readonly id: string; type: EntityType; constructor(parent: BeansParentType); toJSON(): { beans: BeansDeserializer; }; updateModel(): void; }