import type { AwsResourceCommon } from "../common";
import type { CloudFormationValue } from "../IntrinsicFunctions";
export declare type RouteResponseType = 'AWS::ApiGatewayV2::RouteResponse';
export interface RouteResponse extends AwsResourceCommon {
    Type: RouteResponseType;
    Properties: RouteResponseProperties;
}
export interface RouteResponseProperties {
    ApiId: CloudFormationValue;
    RouteId: CloudFormationValue;
    RouteResponseKey: string;
    ModelSelectionExpression?: string;
    ResponseModels?: Record<string, string>;
    ResponseParameters?: object;
}
