export declare class Identifier<T> {
    private value;
    constructor(value: T);
    toString(): string;
}
