/// <reference types="node" />
import { IncomingHttpHeaders } from 'http';
/**
 * A function to determine the content charset from the response headers.
 */
export default function getContentCharset(headers: IncomingHttpHeaders): string;
