import { Config } from 'aws-sdk/lib/config';
import { Vpc } from 'aws-sdk/clients/ec2';
import { TagMap } from '../../types';
/**
 * VPC
 */
export interface RawAwsVpc extends Omit<Vpc, 'Tags'> {
    enableDnsHostnames?: boolean;
    enableDnsSupport?: boolean;
    region: string;
    Tags: TagMap;
    flowLogs: any;
}
declare const _default: ({ regions, config, }: {
    regions: string;
    config: Config;
}) => Promise<{
    [property: string]: RawAwsVpc[];
}>;
export default _default;
