/** * Checks if a given credit card number is valid and returns a boolean value. * @param {string} CardNumber - the credit card number to check * @returns {boolean} - true if the credit card number is valid, false otherwise */ export declare const CheckCardNumber: (CardNumber: string) => boolean;