import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
 */
export declare function getOrganizationTelemetryRule(args: GetOrganizationTelemetryRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationTelemetryRuleResult>;
export interface GetOrganizationTelemetryRuleArgs {
    /**
     * The arn of the organization telemetry rule
     */
    ruleArn: string;
}
export interface GetOrganizationTelemetryRuleResult {
    /**
     * Per-region replication status of the rule
     */
    readonly regionStatuses?: outputs.observabilityadmin.OrganizationTelemetryRuleRegionStatus[];
    /**
     * The name of the organization telemetry rule.
     */
    readonly rule?: outputs.observabilityadmin.OrganizationTelemetryRuleTelemetryRule;
    /**
     * The arn of the organization telemetry rule
     */
    readonly ruleArn?: string;
    /**
     * An array of key-value pairs to apply to this resource
     */
    readonly tags?: outputs.Tag[];
}
/**
 * The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
 */
export declare function getOrganizationTelemetryRuleOutput(args: GetOrganizationTelemetryRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationTelemetryRuleResult>;
export interface GetOrganizationTelemetryRuleOutputArgs {
    /**
     * The arn of the organization telemetry rule
     */
    ruleArn: pulumi.Input<string>;
}
