import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsCreditCardProps { } /** * Check if the string is a credit card. */ export declare const isCreditCard: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;