import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface GatewayRouteTableAssociationProperties {
    RouteTableId: Value<string>;
    GatewayId: Value<string>;
}
export default class Inner_GatewayRouteTableAssociation extends ResourceBase<GatewayRouteTableAssociationProperties> {
    constructor(properties: GatewayRouteTableAssociationProperties);
}
