import { Config } from 'aws-sdk/lib/config';
import { InternetGateway } from 'aws-sdk/clients/ec2';
import { TagMap } from '../../types';
/**
 * IGW
 */
export interface RawAwsIgw extends Omit<InternetGateway, 'Tags'> {
    Tags: TagMap;
    region: string;
}
declare const _default: ({ config, regions, }: {
    config: Config;
    regions: string;
}) => Promise<{
    [property: string]: RawAwsIgw[];
}>;
export default _default;
