import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource";
import { List } from "../../data-types";
export interface InternetGatewayProperties {
    Tags?: List<Inner_ResourceTag>;
}
export default class Inner_InternetGateway extends ResourceBase<InternetGatewayProperties> {
    constructor(properties: InternetGatewayProperties);
}
