/** * @hidden */ export interface IUuidGenerator { v4(): string; } /** * @hidden */ export default class UuidGenerator { v4(): string; }