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