import * as pulumi from "@pulumi/pulumi"; export declare function getSystemDnsServerList(args?: GetSystemDnsServerListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemDnsServerList. */ export interface GetSystemDnsServerListArgs { filter?: string; vdomparam?: string; } /** * A collection of values returned by GetSystemDnsServerList. */ export interface GetSystemDnsServerListResult { readonly filter?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly namelists: string[]; readonly vdomparam?: string; } export declare function getSystemDnsServerListOutput(args?: GetSystemDnsServerListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemDnsServerList. */ export interface GetSystemDnsServerListOutputArgs { filter?: pulumi.Input; vdomparam?: pulumi.Input; }