export interface ParseMimeResult { type: string; parameters: { [key: string]: string; }; } /** * Parses a MIME type string into its components. * * @param contentType - The MIME type string to parse (e.g., "text/csv; charset=utf-8") * @returns An object containing the type and parameters * @throws {TypeError} When the content type is empty or invalid */ export declare function parseMime(contentType: string): ParseMimeResult;