import { Ip } from '../../../Ip';
import { ConfigurationServiceEnum } from './ConfigurationServiceEnum';
/** HostedEmail configuration service */
export interface ConfigurationService {
    /** Service host */
    host: string;
    /** Service IP */
    ip: Ip;
    /** Service port */
    port: number;
    /** Service name */
    service: ConfigurationServiceEnum;
    /** Does the service use SMTP AUTH ? */
    smtpAuth?: boolean;
    /** Does the service use STARTTLS ? */
    startTls: boolean;
}
//# sourceMappingURL=ConfigurationService.d.ts.map