/**
* Parses the host, hostname, and port from an endpoint.
* @param endpoint - And endpoint to parse.
* @internal
*/
export declarefunctionparseEndpoint(endpoint: string): {
host: string;
hostname: string;
port?: string;
};
//# sourceMappingURL=parseEndpoint.d.ts.map