import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsISO31661Alpha3Props { } /** * Check if the string is a valid [ISO 3166-1 alpha-3](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) officially assigned country code. */ export declare const isISO31661Alpha3: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;