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