/** * Check if a file or blob is a HEIC image */ export declare const isHeicImage: (file: File | Blob) => boolean; /** * Get file type from file or blob * If type is not available from the file object, try to determine from the first bytes */ export declare function getFileType(file: File | Blob): Promise;