type DnsLookup = (hostname: string) => Promise<{
    address: string;
    family: number;
}>;
export declare function assertPublicHost(hostname: string, lookup: DnsLookup): Promise<void>;
export declare function isPrivateIp(ip: string): boolean;
export {};
