import * as AWS from 'aws-sdk'; /** * Returns the information about the requested security group if it exists. */ export declare function getSecurityGroup(groupName: string, vpcId: string): Promise; /** * Given an owner (such as 'amazon' or '111111111111'), returns the latest * AMI for the given name substring, or null if no such AMI exists */ export declare function getLatestAmiByName(owner: string, nameSubstring: string): Promise; export declare function getRegions(): Promise; export declare function getSubnets(vpcId: string): Promise; export declare function getSubnet(subnetId: string): Promise; export declare function getDefaultVpc(): Promise; export declare function shouldAssignPublicIp(subnetIds: string[]): Promise;