import type { ComponentIdObj } from '@teambit/component-id'; import { ComponentID } from '@teambit/component-id'; export declare class ComponentMeta { /** * id the component. */ readonly id: ComponentID; constructor( /** * id the component. */ id: ComponentID); /** * display name of the component. */ get displayName(): string; toObject(): { id: ComponentIdObj; }; static from(object: { [key: string]: any; }): ComponentMeta; }