export declare const DEFAULT_MIME_TYPE = "application/octet-stream"; /** * Detect a MIME type from a file path's extension. Case-insensitive; returns * `application/octet-stream` for unknown or absent extensions. */ export declare function detectMimeType(path: string): string; export declare function googleConversionTarget(sourceMime: string): string | null;