import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface BasePathMappingProperties {
    BasePath?: Value<string>;
    DomainName: Value<string>;
    RestApiId?: Value<string>;
    Stage?: Value<string>;
}
export default class Inner_BasePathMapping extends ResourceBase<BasePathMappingProperties> {
    constructor(properties: BasePathMappingProperties);
}
