import type { AwsResourceCommon } from "../common";
import type { CloudFormationString } from "../IntrinsicFunctions";
export declare type BasePathMappingType = 'AWS::ApiGateway::BasePathMapping';
export interface BasePathMapping extends AwsResourceCommon {
    Type: BasePathMappingType;
    Properties: {
        BasePath?: string;
        DomainName: CloudFormationString;
        RestApiId: CloudFormationString;
        Stage?: CloudFormationString;
    };
}
