export { getMimeTypeFromExtension, getExtensionsFromMimeType, isMimeTypeSupported, getAllSupportedExtensions, getMimeTypeCategory } from './mimeTypes';
/**
 * Detect content type from binary data and headers
 */
export declare function detectContentTypeFromBytes(bytes: Uint8Array, mimeType?: string): string;
/**
 * Check if content type is supported for rendering
 */
export declare function isContentTypeSupported(mimeType: string): boolean;
declare const _default: {
    detectContentTypeFromBytes: typeof detectContentTypeFromBytes;
    isContentTypeSupported: typeof isContentTypeSupported;
};
export default _default;
//# sourceMappingURL=contentDetection.d.ts.map