/**
 * https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful_responses
 */
export declare enum MimeTypes {
    json = "application/json",
    xml = "application/xml",
    yaml = "text/yaml",
    yaml2 = "application/yaml",
    toml = "text/toml",
    toml2 = "application/toml",
    text = "text/plain",
    html = "text/html",
    markdown = "text/markdown",
    binary = "binary/octet-stream",
    multipart_mixed = "multipart/mixed",
    opra_response_json = "application/opra.response+json",
    opra_response_xml = "application/opra.response+xml",
    opra_response_yaml = "text/opra.response+yaml",
    opra_response_toml = "text/opra.response+toml"
}
