import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Definition of AWS::RefactorSpaces::Route Resource Type
 */
export declare function getRoute(args: GetRouteArgs, opts?: pulumi.InvokeOptions): Promise<GetRouteResult>;
export interface GetRouteArgs {
    /**
     * The unique identifier of the application.
     */
    applicationIdentifier: string;
    /**
     * The unique identifier of the environment.
     */
    environmentIdentifier: string;
    /**
     * The unique identifier of the route.
     */
    routeIdentifier: string;
}
export interface GetRouteResult {
    /**
     * The Amazon Resource Name (ARN) of the route.
     */
    readonly arn?: string;
    /**
     * A mapping of ABPlong path resources to resource IDs.
     */
    readonly pathResourceToId?: string;
    /**
     * The unique identifier of the route.
     */
    readonly routeIdentifier?: 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[];
}
/**
 * Definition of AWS::RefactorSpaces::Route Resource Type
 */
export declare function getRouteOutput(args: GetRouteOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRouteResult>;
export interface GetRouteOutputArgs {
    /**
     * The unique identifier of the application.
     */
    applicationIdentifier: pulumi.Input<string>;
    /**
     * The unique identifier of the environment.
     */
    environmentIdentifier: pulumi.Input<string>;
    /**
     * The unique identifier of the route.
     */
    routeIdentifier: pulumi.Input<string>;
}
