import { ResourceBase } from "../../resource";
import { Value, MapOf } from "../../data-types";
export interface GatewayResponseProperties {
    ResponseParameters?: MapOf<Value<string>>;
    ResponseTemplates?: MapOf<Value<string>>;
    ResponseType: Value<string>;
    RestApiId: Value<string>;
    StatusCode?: Value<string>;
}
export default class Inner_GatewayResponse extends ResourceBase<GatewayResponseProperties> {
    constructor(properties: GatewayResponseProperties);
}
