import type { BatchVerificationResult, BatchVerifyParams } from './types';
/**
 * Verify multiple email addresses in parallel with concurrency control
 */
export declare function verifyEmailBatch(params: BatchVerifyParams): Promise<BatchVerificationResult>;
