import * as pulumi from "@pulumi/pulumi"; export declare function getSystemArpTable(args: GetSystemArpTableArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemArpTable. */ export interface GetSystemArpTableArgs { fosid: number; vdomparam?: string; } /** * A collection of values returned by GetSystemArpTable. */ export interface GetSystemArpTableResult { readonly fosid: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly interface: string; readonly ip: string; readonly mac: string; readonly vdomparam?: string; } export declare function getSystemArpTableOutput(args: GetSystemArpTableOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemArpTable. */ export interface GetSystemArpTableOutputArgs { fosid: pulumi.Input; vdomparam?: pulumi.Input; }