import { IamInstanceProfile, Instance, TagList } from 'aws-sdk/clients/ec2';
import { ServiceConnection } from '@cloudgraph/sdk';
declare const _default: ({ service: instance, data, region, account, }: {
    account: string;
    data: {
        name: string;
        data: {
            [property: string]: any[];
        };
    }[];
    service: Instance & {
        region: string;
        DisableApiTermination?: boolean;
        KeyPairName?: string;
        Tags?: TagList;
        IamInstanceProfile: IamInstanceProfile;
        IamRolesArn?: string[];
    };
    region: string;
}) => {
    [key: string]: ServiceConnection[];
};
/**
 * EC2
 */
export default _default;
