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.getLiveToolsWakeOnLan({
 *     serial: "string",
 *     wakeOnLanId: "string",
 * });
 * export const merakiDevicesLiveToolsWakeOnLanExample = example.then(example => example.item);
 * ```
 */
export declare function getLiveToolsWakeOnLan(args: GetLiveToolsWakeOnLanArgs, opts?: pulumi.InvokeOptions): Promise<GetLiveToolsWakeOnLanResult>;
/**
 * A collection of arguments for invoking getLiveToolsWakeOnLan.
 */
export interface GetLiveToolsWakeOnLanArgs {
    /**
     * serial path parameter.
     */
    serial: string;
    /**
     * wakeOnLanId path parameter. Wake on lan ID
     */
    wakeOnLanId: string;
}
/**
 * A collection of values returned by getLiveToolsWakeOnLan.
 */
export interface GetLiveToolsWakeOnLanResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly item: outputs.devices.GetLiveToolsWakeOnLanItem;
    /**
     * serial path parameter.
     */
    readonly serial: string;
    /**
     * wakeOnLanId path parameter. Wake on lan ID
     */
    readonly wakeOnLanId: string;
}
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = meraki.devices.getLiveToolsWakeOnLan({
 *     serial: "string",
 *     wakeOnLanId: "string",
 * });
 * export const merakiDevicesLiveToolsWakeOnLanExample = example.then(example => example.item);
 * ```
 */
export declare function getLiveToolsWakeOnLanOutput(args: GetLiveToolsWakeOnLanOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLiveToolsWakeOnLanResult>;
/**
 * A collection of arguments for invoking getLiveToolsWakeOnLan.
 */
export interface GetLiveToolsWakeOnLanOutputArgs {
    /**
     * serial path parameter.
     */
    serial: pulumi.Input<string>;
    /**
     * wakeOnLanId path parameter. Wake on lan ID
     */
    wakeOnLanId: pulumi.Input<string>;
}
