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