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