import type { UUID, Namespace } from "./types";
export declare class UUIDGeneratorFuz {
    static v1(): UUID;
    static v4(): UUID;
    static v5(name: string, namespace: Namespace): UUID;
    static isValid(uuid: string): boolean;
}
export { UUID, Namespace };
