import { BitId } from '../../bit-id';
export default class ComponentID {
    legacyComponentId: BitId;
    constructor(legacyComponentId: BitId);
    get _legacy(): BitId;
    get version(): string | undefined;
    get name(): string;
    isEqual(id: ComponentID): boolean;
    toString(): string;
    static fromString(idStr: string): ComponentID;
    static fromLegacy(legacyId: BitId): ComponentID;
}
