///
import _isUUID from 'validator/lib/isUUID';
import { TReferenceProps } from '../../..';
import { IStringProps, TStringValidatorResult } from '../_types';
declare type TParameters = Parameters;
export interface IIsUUIDProps {
/**
* UUID version
*/
version?: TParameters[1];
}
/**
* Check if the string is a UUID (version 3, 4 or 5).
*/
export declare const isUUID: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;
export {};