import type { SmtpVerificationResult, VerifyMailboxSMTPParams } from './types';
export declare function verifyMailboxSMTP(params: VerifyMailboxSMTPParams): Promise<{
    smtpResult: SmtpVerificationResult;
    cached: boolean;
    port: number;
    portCached: boolean;
}>;
