import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * The AWS::DevOpsAgent::Service resource registers external services (like Dynatrace, MCP servers, GitLab) for integration with DevOpsAgent.
 */
export declare function getService(args: GetServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceResult>;
export interface GetServiceArgs {
    /**
     * The unique identifier of the service
     */
    serviceId: string;
}
export interface GetServiceResult {
    /**
     * List of accessible resources for this service
     */
    readonly accessibleResources?: {
        [key: string]: string;
    }[];
    /**
     * Additional details specific to the service type
     */
    readonly additionalServiceDetails?: outputs.devopsagent.ServiceAdditionalServiceDetails;
    /**
     * The Amazon Resource Name (ARN) of the Service.
     */
    readonly arn?: string;
    /**
     * The unique identifier of the service
     */
    readonly serviceId?: string;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * The AWS::DevOpsAgent::Service resource registers external services (like Dynatrace, MCP servers, GitLab) for integration with DevOpsAgent.
 */
export declare function getServiceOutput(args: GetServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceResult>;
export interface GetServiceOutputArgs {
    /**
     * The unique identifier of the service
     */
    serviceId: pulumi.Input<string>;
}
