export declare class UuidGenerator { private static _instance; static get instance(): UuidGenerator; /** * Creates a new uuid v4. */ create(): string; /** * Parse the uuid to array of bytes * * @param uuid the uuid to convert * @returns ArrayLike collection of 16 values */ parse(uuid: string): Uint8Array; /** * Stringify an array of bytes to an uuid * * @param uuid the array of bytes * @returns the converted uuid */ stringify(uuid: Uint8Array): string; /** * Checks if the provided string is a valid uuid. * * @param uuid the uuid to check */ validate(uuid: string): boolean; } //# sourceMappingURL=UuidGenerator.d.ts.map