export declare class Guid { private constructor(); static GuidValidator: RegExp; static Empty: string; protected value: string; static Create(): Guid; static CreateEmpty(): Guid; static CreateRaw(): string; static IsGuid(guid: any): boolean; static Parse(guid: string): Guid; private static gen; Equals(other: Guid): boolean; IsEmpty(): boolean; ToJSON(): any; ToString(): string; }