import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Definition of AWS::RefactorSpaces::Application Resource Type
 */
export declare function getApplication(args: GetApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationResult>;
export interface GetApplicationArgs {
    /**
     * The unique identifier of the application.
     */
    applicationIdentifier: string;
    /**
     * The unique identifier of the environment.
     */
    environmentIdentifier: string;
}
export interface GetApplicationResult {
    /**
     * The resource ID of the ABP for the proxy.
     */
    readonly apiGatewayId?: string;
    /**
     * The unique identifier of the application.
     */
    readonly applicationIdentifier?: string;
    /**
     * The Amazon Resource Name (ARN) of the application.
     */
    readonly arn?: string;
    /**
     * The Amazon Resource Name (ARN) of the Network Load Balancer .
     */
    readonly nlbArn?: string;
    /**
     * The name of the Network Load Balancer configured by the API Gateway proxy.
     */
    readonly nlbName?: string;
    /**
     * The endpoint URL of the ABPlong proxy.
     */
    readonly proxyUrl?: string;
    /**
     * The name of the ABP stage. The name defaults to `prod` .
     */
    readonly stageName?: string;
    /**
     * Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair.
     */
    readonly tags?: outputs.Tag[];
    /**
     * The `VpcLink` ID of the ABP proxy.
     */
    readonly vpcLinkId?: string;
}
/**
 * Definition of AWS::RefactorSpaces::Application Resource Type
 */
export declare function getApplicationOutput(args: GetApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplicationResult>;
export interface GetApplicationOutputArgs {
    /**
     * The unique identifier of the application.
     */
    applicationIdentifier: pulumi.Input<string>;
    /**
     * The unique identifier of the environment.
     */
    environmentIdentifier: pulumi.Input<string>;
}
