import * as pulumi from "@pulumi/pulumi"; export declare function getSystemDhcpServerList(args?: GetSystemDhcpServerListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemDhcpServerList. */ export interface GetSystemDhcpServerListArgs { filter?: string; vdomparam?: string; } /** * A collection of values returned by GetSystemDhcpServerList. */ export interface GetSystemDhcpServerListResult { readonly filter?: string; readonly fosidlists: number[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly vdomparam?: string; } export declare function getSystemDhcpServerListOutput(args?: GetSystemDhcpServerListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemDhcpServerList. */ export interface GetSystemDhcpServerListOutputArgs { filter?: pulumi.Input; vdomparam?: pulumi.Input; }