import { StringOrSymbol } from '../definitions/types'; import { Target } from '../definitions/target'; export declare function stringifyIdentity(identity: ComponentIdentity): string; export declare class ComponentIdentity { private readonly name; private readonly targetClass; constructor(cn: StringOrSymbol, targetClass: Target); get componentName(): StringOrSymbol; get clazz(): Target; toString(): string; }