import dns from 'dns';
export declare const getMx: (domain: string, timeout?: number) => Promise<dns.MxRecord[]>;
export declare const getBestMx: (domain: string, timeout?: number) => Promise<dns.MxRecord | undefined>;
