import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface EgressOnlyInternetGatewayProperties {
    VpcId: Value<string>;
}
export default class Inner_EgressOnlyInternetGateway extends ResourceBase<EgressOnlyInternetGatewayProperties> {
    constructor(properties: EgressOnlyInternetGatewayProperties);
}
