export declare class GuidRegistry { protected sLength: any; protected shortToLongMap: {}; protected longToShortMap: {}; constructor(shortLength?: number); static checkGuid(guid: string, throwError?: boolean): boolean; getLong(short: string): string; getMatches(partial: string): string[]; getShort(guid: string): any; newGuid(): string; static generateNewGuid(): string; protected static generatorReplacer(c: any): string; /** * Assign a short GUID to a newly encountered GUID * @param guid */ register(guid: string): void; }