/**
 * A GUID.
 */
export declare class Guid {
    private readonly _value;
    /**
     * Creates a new Guid.
     */
    static Create(): Guid;
    private constructor();
    /**
     * Gets the value of this guid.
     */
    get value(): string;
    /**
     * Determines is this guid equals a provided guid.
     * @param guid the guid.
     * @returns true, if this guid equals the other guid; false, otherwise.
     */
    equals(guid: Guid): boolean;
}
