import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
 * The API tokens data source allows all access tokens to be retrieved, note the token value is not included in the response.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as dynatrace from "@pulumi/dynatrace";
 *
 * const exampleApiTokens = dynatrace.getApiTokens({});
 * export const example = exampleApiTokens;
 * ```
 */
export declare function getApiTokens(opts?: pulumi.InvokeOptions): Promise<GetApiTokensResult>;
/**
 * A collection of values returned by getApiTokens.
 */
export interface GetApiTokensResult {
    readonly apiTokens: outputs.GetApiTokensApiToken[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
}
/**
 * The API tokens data source allows all access tokens to be retrieved, note the token value is not included in the response.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as dynatrace from "@pulumi/dynatrace";
 *
 * const exampleApiTokens = dynatrace.getApiTokens({});
 * export const example = exampleApiTokens;
 * ```
 */
export declare function getApiTokensOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApiTokensResult>;
