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.networks.getClients({
 *     clientId: "string",
 *     networkId: "string",
 * });
 * export const merakiNetworksClientsExample = example.then(example => example.item);
 * ```
 */
export declare function getClients(args: GetClientsArgs, opts?: pulumi.InvokeOptions): Promise<GetClientsResult>;
/**
 * A collection of arguments for invoking getClients.
 */
export interface GetClientsArgs {
    /**
     * clientId path parameter. Client ID
     */
    clientId: string;
    /**
     * networkId path parameter. Network ID
     */
    networkId: string;
}
/**
 * A collection of values returned by getClients.
 */
export interface GetClientsResult {
    /**
     * clientId path parameter. Client ID
     */
    readonly clientId: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly item: outputs.networks.GetClientsItem;
    /**
     * networkId path parameter. Network ID
     */
    readonly networkId: string;
}
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = meraki.networks.getClients({
 *     clientId: "string",
 *     networkId: "string",
 * });
 * export const merakiNetworksClientsExample = example.then(example => example.item);
 * ```
 */
export declare function getClientsOutput(args: GetClientsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetClientsResult>;
/**
 * A collection of arguments for invoking getClients.
 */
export interface GetClientsOutputArgs {
    /**
     * clientId path parameter. Client ID
     */
    clientId: pulumi.Input<string>;
    /**
     * networkId path parameter. Network ID
     */
    networkId: pulumi.Input<string>;
}
