declare module 'uuid' { export type Uuid = string & { __type__: 'Uuid' }; export const v4: () => Uuid; }