/** * Media MIME Type Utilities */ /** * Get MIME type from file extension or type */ export declare function getMimeType(type: string, filePath?: string): string; /** * Get media category from MIME type */ export declare function getMediaCategory(mimeType: string): 'image' | 'video' | 'audio' | 'document';