import { CfnResource, Resolvable } from '../../base';
export declare type EgressOnlyInternetGateway_Type = 'AWS::EC2::EgressOnlyInternetGateway';
export declare const EgressOnlyInternetGateway_Type = "AWS::EC2::EgressOnlyInternetGateway";
/**
 * Resource Type definition for AWS::EC2::EgressOnlyInternetGateway
 * {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html}
 */
export default function EgressOnlyInternetGateway(props: EgressOnlyInternetGateway_Properties): CfnResource<EgressOnlyInternetGateway_Properties>;
/**
 * Resource Type definition for AWS::EC2::EgressOnlyInternetGateway
 * {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html}
 */
export declare type EgressOnlyInternetGateway_Properties = {
    Id?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-vpcid}
     */
    VpcId: Resolvable<string>;
};
