import type { ValidateReturnType } from "../../Validate/type"; /** * Creates a validator for checking if a string is a valid UUID * @param {number[]} [versions=[4]] - Array of supported UUID versions (1-7) * @param {string} [message] - Custom error message for validation failure * @returns {ValidateReturnType} - Validator for UUID strings */ export declare const uuid: (versions?: number[], message?: string) => ValidateReturnType;