import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsJWTProps { } /** * Check if the string is valid JWT token. */ export declare const isJWT: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;