export type Uuid = string;
export declare const toUuid: () => Uuid;
export declare const isUuid: (id?: unknown) => id is Uuid;
export declare const includesUuid: (value?: unknown) => boolean;
