import MutableURL from './url'; /** * Checks if this URL's hostname is non-ascii, and if so returns a new URL with the hostname * punycoded. Otherwise returns itself. */ export declare function getPunycodeEncoded(toASCII: (s: string) => string, url: MutableURL): MutableURL;