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