import type { CreditCardOptions } from '../types/index'; /** * Check if the string is CreditCard * * @param card - Options object * @param options = {} - Options object * @returns True if the string matches the validation, false otherwise */ export default function isCreditCard(card: string, options?: CreditCardOptions): boolean;