/**
 * Some common data types
 */
export declare enum ContentType {
    TEXT = "text/plain",
    JSON = "application/json",
    JAVASCRIPT = "text/javascript",// RFC 9239
    WASM = "application/wasm",
    BINARY = "application/octet-stream"
}
