import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface TransitGatewayRouteTableAssociationProperties {
    TransitGatewayRouteTableId: Value<string>;
    TransitGatewayAttachmentId: Value<string>;
}
export default class Inner_TransitGatewayRouteTableAssociation extends ResourceBase<TransitGatewayRouteTableAssociationProperties> {
    constructor(properties: TransitGatewayRouteTableAssociationProperties);
}
