import type { IPrimaryKey } from '../typings.js'; /** * @internal */ export declare class EntityIdentifier { private value?; constructor(value?: IPrimaryKey | undefined); setValue(value: IPrimaryKey): void; getValue(): T; }