import * as pulumi from "@pulumi/pulumi"; export declare function getSystemEmailServer(args?: GetSystemEmailServerArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemEmailServer. */ export interface GetSystemEmailServerArgs { vdomparam?: string; } /** * A collection of values returned by GetSystemEmailServer. */ export interface GetSystemEmailServerResult { readonly authenticate: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly interface: string; readonly interfaceSelectMethod: string; readonly password: string; readonly port: number; readonly replyTo: string; readonly security: string; readonly server: string; readonly sourceIp: string; readonly sourceIp6: string; readonly sslMinProtoVersion: string; readonly type: string; readonly username: string; readonly validateServer: string; readonly vdomparam?: string; } export declare function getSystemEmailServerOutput(args?: GetSystemEmailServerOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemEmailServer. */ export interface GetSystemEmailServerOutputArgs { vdomparam?: pulumi.Input; }