/**
 * Parse an IPv6 address, returning both host and port.
 * see https://github.com/actionhero/actionhero/issues/275
 */
export declare function parseIPv6URI(addr: string): {
    host: string;
    port: number;
};
