export interface EndpointConfig { readonly type: 'tcp'; readonly host: string; readonly port: number; } export declare type Endpoint = string; export declare const createEndpoint: ({ type, host, port }: EndpointConfig) => string; export declare const getEndpointConfig: (endpoint: string) => EndpointConfig;