import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface RouteProperties {
    RouteTableId: Value<string>;
    DestinationIpv6CidrBlock?: Value<string>;
    NetworkInterfaceId?: Value<string>;
    DestinationCidrBlock?: Value<string>;
    TransitGatewayId?: Value<string>;
    VpcPeeringConnectionId?: Value<string>;
    InstanceId?: Value<string>;
    EgressOnlyInternetGatewayId?: Value<string>;
    NatGatewayId?: Value<string>;
    GatewayId?: Value<string>;
}
export default class Inner_Route extends ResourceBase<RouteProperties> {
    constructor(properties: RouteProperties);
}
