/*! Copyright (c) 2024, XAPP AI */
/**
 * Looks for common hallucinated phone numbers.
 *
 * @param number
 * @returns
 */
export declare function isHallucinatedPhoneNumber(number: string): boolean;
/**
 * Looks for common hallucinated (or made up fake) email addresses.
 *
 * @param email
 * @returns
 */
export declare function isHallucinatedEmail(email: string): boolean;
