export declare const JSON = "application/json"; export declare const XML = "application/xml"; export declare const FORM = "multipart/form-data"; export declare const IMAGE = "image/*"; export declare const JPEG = "image/jpeg"; export declare const PNG = "image/png"; export declare const SVG = "image/svg"; export declare const TEXT = "text/plain"; export declare const SSE = "text/event-stream"; export declare const ANY = "*/*"; export declare const ContentTypes: { JSON: string; XML: string; FORM: string; IMAGE: string; JPEG: string; PNG: string; SVG: string; TEXT: string; SSE: string; ANY: string; }; export type ContentType = keyof typeof ContentTypes; export default ContentTypes;