import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
 * This data source provides the of ConstTrafficTypes.
 *
 * The Traffic Type values can be used to define the `trafficType` attribute in the `junipermist.org.Service` resource.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const listOfTrafficTypes = junipermist.getConstTrafficTypes({});
 * ```
 */
export declare function getConstTrafficTypes(opts?: pulumi.InvokeOptions): Promise<GetConstTrafficTypesResult>;
/**
 * A collection of values returned by getConstTrafficTypes.
 */
export interface GetConstTrafficTypesResult {
    readonly constTrafficTypes: outputs.GetConstTrafficTypesConstTrafficType[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
}
/**
 * This data source provides the of ConstTrafficTypes.
 *
 * The Traffic Type values can be used to define the `trafficType` attribute in the `junipermist.org.Service` resource.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const listOfTrafficTypes = junipermist.getConstTrafficTypes({});
 * ```
 */
export declare function getConstTrafficTypesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConstTrafficTypesResult>;
