/** * MIME type detection based on file extension */ /** * Get MIME type for a file path */ export declare function getMimeType(filePath: string): string; /** * Check if MIME type is text-based */ export declare function isTextMimeType(mimeType: string): boolean;