import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve Datadog's Synthetics Locations (to be used in Synthetics tests). */ export declare function getSyntheticsLocations(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getSyntheticsLocations. */ export interface GetSyntheticsLocationsResult { /** * The ID of this resource. */ readonly id: string; /** * A map of available Synthetics location IDs to names for Synthetics tests. */ readonly locations: { [key: string]: string; }; } /** * Use this data source to retrieve Datadog's Synthetics Locations (to be used in Synthetics tests). */ export declare function getSyntheticsLocationsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;