import * as pulumi from "@pulumi/pulumi";
/**
 * The `dynatrace.RequestNaming` data source allows the request naming rule ID to be retrieved by its name.
 *
 * - `name` (String) - The name to be assigned to matching requests.
 *
 * If multiple services match the given criteria, the first result will be retrieved.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as dynatrace from "@pulumi/dynatrace";
 *
 * const example = dynatrace.getRequestNaming({
 *     name: "Terraform Example",
 * });
 * export const id = example.then(example => example.id);
 * ```
 */
export declare function getRequestNaming(args: GetRequestNamingArgs, opts?: pulumi.InvokeOptions): Promise<GetRequestNamingResult>;
/**
 * A collection of arguments for invoking getRequestNaming.
 */
export interface GetRequestNamingArgs {
    name: string;
}
/**
 * A collection of values returned by getRequestNaming.
 */
export interface GetRequestNamingResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly name: string;
}
/**
 * The `dynatrace.RequestNaming` data source allows the request naming rule ID to be retrieved by its name.
 *
 * - `name` (String) - The name to be assigned to matching requests.
 *
 * If multiple services match the given criteria, the first result will be retrieved.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as dynatrace from "@pulumi/dynatrace";
 *
 * const example = dynatrace.getRequestNaming({
 *     name: "Terraform Example",
 * });
 * export const id = example.then(example => example.id);
 * ```
 */
export declare function getRequestNamingOutput(args: GetRequestNamingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRequestNamingResult>;
/**
 * A collection of arguments for invoking getRequestNaming.
 */
export interface GetRequestNamingOutputArgs {
    name: pulumi.Input<string>;
}
