import { BaseCamelEntity, EntityType } from '../../camel/entities/base-entity'; export declare class NonVisualEntity implements BaseCamelEntity { private readonly base; readonly id: string; type: EntityType; constructor(base: unknown); toJSON(): unknown; }