import { Options } from '../types';
import Mail = require('nodemailer/lib/mailer');
declare const setConfig: (configOptions: Options) => void;
declare const getConfig: () => Options;
declare const getTransporter: () => Mail;
export { getConfig, setConfig, getTransporter };