import creditCardType from 'credit-card-type'; /** * Detect credit card type based on the value received. * * @see {@link https://github.com/braintree/credit-card-type#creditcardtypenumber-string} * * @param value - Credit card number. * * @returns Credit card type for the given value. */ declare const detectCreditCardType: (value: string) => ReturnType[number] | undefined | false; export default detectCreditCardType;