export declare const ApplicationApiGatewayEndpointType: {
    readonly Regional: "REGIONAL";
    readonly Private: "PRIVATE";
};
export type ApplicationApiGatewayEndpointType = (typeof ApplicationApiGatewayEndpointType)[keyof typeof ApplicationApiGatewayEndpointType];
export declare const ApplicationProxyType: {
    readonly ApiGateway: "API_GATEWAY";
};
export type ApplicationProxyType = (typeof ApplicationProxyType)[keyof typeof ApplicationProxyType];
export declare const EnvironmentNetworkFabricType: {
    readonly TransitGateway: "TRANSIT_GATEWAY";
    readonly None: "NONE";
};
export type EnvironmentNetworkFabricType = (typeof EnvironmentNetworkFabricType)[keyof typeof EnvironmentNetworkFabricType];
export declare const RouteActivationState: {
    readonly Inactive: "INACTIVE";
    readonly Active: "ACTIVE";
};
export type RouteActivationState = (typeof RouteActivationState)[keyof typeof RouteActivationState];
export declare const RouteMethod: {
    readonly Delete: "DELETE";
    readonly Get: "GET";
    readonly Head: "HEAD";
    readonly Options: "OPTIONS";
    readonly Patch: "PATCH";
    readonly Post: "POST";
    readonly Put: "PUT";
};
export type RouteMethod = (typeof RouteMethod)[keyof typeof RouteMethod];
export declare const RouteType: {
    readonly Default: "DEFAULT";
    readonly UriPath: "URI_PATH";
};
export type RouteType = (typeof RouteType)[keyof typeof RouteType];
export declare const ServiceEndpointType: {
    readonly Lambda: "LAMBDA";
    readonly Url: "URL";
};
export type ServiceEndpointType = (typeof ServiceEndpointType)[keyof typeof ServiceEndpointType];
