import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * This data source provides the list of Site Evpn Topologies
 *
 * EVPN allows an alternative but more efficient LAN architecture utilizing VxLAN / MP-BGP to separate the control plane (MAC / IP Learning) from the forwarding plane.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const siteEvpnTopologies = junipermist.site.getEvpnTopologies({
 *     siteId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
 * });
 * ```
 */
export declare function getEvpnTopologies(args: GetEvpnTopologiesArgs, opts?: pulumi.InvokeOptions): Promise<GetEvpnTopologiesResult>;
/**
 * A collection of arguments for invoking getEvpnTopologies.
 */
export interface GetEvpnTopologiesArgs {
    siteId: string;
}
/**
 * A collection of values returned by getEvpnTopologies.
 */
export interface GetEvpnTopologiesResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly siteEvpnTopologies: outputs.site.GetEvpnTopologiesSiteEvpnTopology[];
    readonly siteId: string;
}
/**
 * This data source provides the list of Site Evpn Topologies
 *
 * EVPN allows an alternative but more efficient LAN architecture utilizing VxLAN / MP-BGP to separate the control plane (MAC / IP Learning) from the forwarding plane.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const siteEvpnTopologies = junipermist.site.getEvpnTopologies({
 *     siteId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
 * });
 * ```
 */
export declare function getEvpnTopologiesOutput(args: GetEvpnTopologiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEvpnTopologiesResult>;
/**
 * A collection of arguments for invoking getEvpnTopologies.
 */
export interface GetEvpnTopologiesOutputArgs {
    siteId: pulumi.Input<string>;
}
