export declare enum IpType {
    Public = "public",
    Local = "local"
}
export declare const validateIpV4: (ip: string) => boolean;
export declare const getContainerIp: () => string;
export declare const getAwsIp: (type?: IpType) => Promise<string>;
export declare const getPublicIp: () => Promise<string>;
export declare const getInstanceIp: (type?: IpType) => Promise<string>;
