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.getEventsEventTypes({
 *     networkId: "string",
 * });
 * export const merakiNetworksEventsEventTypesExample = example.then(example => example.items);
 * ```
 */
export declare function getEventsEventTypes(args: GetEventsEventTypesArgs, opts?: pulumi.InvokeOptions): Promise<GetEventsEventTypesResult>;
/**
 * A collection of arguments for invoking getEventsEventTypes.
 */
export interface GetEventsEventTypesArgs {
    /**
     * networkId path parameter. Network ID
     */
    networkId: string;
}
/**
 * A collection of values returned by getEventsEventTypes.
 */
export interface GetEventsEventTypesResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * Array of ResponseNetworksGetNetworkEventsEventTypes
     */
    readonly items: outputs.networks.GetEventsEventTypesItem[];
    /**
     * 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.getEventsEventTypes({
 *     networkId: "string",
 * });
 * export const merakiNetworksEventsEventTypesExample = example.then(example => example.items);
 * ```
 */
export declare function getEventsEventTypesOutput(args: GetEventsEventTypesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEventsEventTypesResult>;
/**
 * A collection of arguments for invoking getEventsEventTypes.
 */
export interface GetEventsEventTypesOutputArgs {
    /**
     * networkId path parameter. Network ID
     */
    networkId: pulumi.Input<string>;
}
