import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = meraki.devices.getLiveToolsPingDevice({
 *     id: "string",
 *     serial: "string",
 * });
 * export const merakiDevicesLiveToolsPingDeviceExample = example.then(example => example.item);
 * ```
 */
export declare function getLiveToolsPingDevice(args: GetLiveToolsPingDeviceArgs, opts?: pulumi.InvokeOptions): Promise<GetLiveToolsPingDeviceResult>;
/**
 * A collection of arguments for invoking getLiveToolsPingDevice.
 */
export interface GetLiveToolsPingDeviceArgs {
    /**
     * id path parameter.
     */
    id: string;
    /**
     * serial path parameter.
     */
    serial: string;
}
/**
 * A collection of values returned by getLiveToolsPingDevice.
 */
export interface GetLiveToolsPingDeviceResult {
    /**
     * id path parameter.
     */
    readonly id: string;
    readonly item: outputs.devices.GetLiveToolsPingDeviceItem;
    /**
     * serial path parameter.
     */
    readonly serial: string;
}
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = meraki.devices.getLiveToolsPingDevice({
 *     id: "string",
 *     serial: "string",
 * });
 * export const merakiDevicesLiveToolsPingDeviceExample = example.then(example => example.item);
 * ```
 */
export declare function getLiveToolsPingDeviceOutput(args: GetLiveToolsPingDeviceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLiveToolsPingDeviceResult>;
/**
 * A collection of arguments for invoking getLiveToolsPingDevice.
 */
export interface GetLiveToolsPingDeviceOutputArgs {
    /**
     * id path parameter.
     */
    id: pulumi.Input<string>;
    /**
     * serial path parameter.
     */
    serial: pulumi.Input<string>;
}
