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.getCellularGatewayDhcp({
 *     networkId: "string",
 * });
 * export const merakiNetworksCellularGatewayDhcpExample = example.then(example => example.item);
 * ```
 */
export declare function getCellularGatewayDhcp(args: GetCellularGatewayDhcpArgs, opts?: pulumi.InvokeOptions): Promise<GetCellularGatewayDhcpResult>;
/**
 * A collection of arguments for invoking getCellularGatewayDhcp.
 */
export interface GetCellularGatewayDhcpArgs {
    /**
     * networkId path parameter. Network ID
     */
    networkId: string;
}
/**
 * A collection of values returned by getCellularGatewayDhcp.
 */
export interface GetCellularGatewayDhcpResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly item: outputs.networks.GetCellularGatewayDhcpItem;
    /**
     * 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.getCellularGatewayDhcp({
 *     networkId: "string",
 * });
 * export const merakiNetworksCellularGatewayDhcpExample = example.then(example => example.item);
 * ```
 */
export declare function getCellularGatewayDhcpOutput(args: GetCellularGatewayDhcpOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCellularGatewayDhcpResult>;
/**
 * A collection of arguments for invoking getCellularGatewayDhcp.
 */
export interface GetCellularGatewayDhcpOutputArgs {
    /**
     * networkId path parameter. Network ID
     */
    networkId: pulumi.Input<string>;
}
