import * as pulumi from "@pulumi/pulumi";
/**
 * The Azure supported service data source queries for a full list of all supported services.
 *
 * ## Example Usage
 *
 * For an example of this data source, please refer to the Resource Example Usage of the dynatrace.AzureService resource.
 */
export declare function getAzureSupportedServices(args?: GetAzureSupportedServicesArgs, opts?: pulumi.InvokeOptions): Promise<GetAzureSupportedServicesResult>;
/**
 * A collection of arguments for invoking getAzureSupportedServices.
 */
export interface GetAzureSupportedServicesArgs {
    /**
     * Services with the given names won't be included in the results
     */
    excepts?: string[];
}
/**
 * A collection of values returned by getAzureSupportedServices.
 */
export interface GetAzureSupportedServicesResult {
    /**
     * Services with the given names won't be included in the results
     */
    readonly excepts?: string[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * The keys are the names of the supported services. The values provide information whether that service is built in or not.
     */
    readonly services: {
        [key: string]: boolean;
    };
}
/**
 * The Azure supported service data source queries for a full list of all supported services.
 *
 * ## Example Usage
 *
 * For an example of this data source, please refer to the Resource Example Usage of the dynatrace.AzureService resource.
 */
export declare function getAzureSupportedServicesOutput(args?: GetAzureSupportedServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAzureSupportedServicesResult>;
/**
 * A collection of arguments for invoking getAzureSupportedServices.
 */
export interface GetAzureSupportedServicesOutputArgs {
    /**
     * Services with the given names won't be included in the results
     */
    excepts?: pulumi.Input<pulumi.Input<string>[]>;
}
