import type { FreeEmailCheckParams } from './types';
/**
 * Check whether the email's domain is on the bundled free-provider list.
 * Result is rich-cached (`FreeEmailResult`) so repeated calls hit a Set
 * lookup behind a CacheStore<T>.
 */
export declare function isFreeEmail(params: FreeEmailCheckParams): Promise<boolean>;
