///
import _isVAT from 'validator/lib/isVAT';
import { TReferenceProps } from '../../..';
import { IStringProps, TStringValidatorResult } from '../_types';
declare type TParameters = Parameters;
export interface IIsVATProps {
/**
* Available country codes: [ `GB`, `IT`,`NL` ].
*/
countryCode: TParameters[1];
}
/**
* Checks that the string is a valid VAT number.
*/
export declare const isVAT: (props: TReferenceProps & IStringProps) => TStringValidatorResult;
export {};