export default mimeTypeToExtension; /** * Returns the corresponding file extension from the provided MimeType. * @param {string} mimeType * @returns {string | undefined} Mapped file extension from the MimeType, or `undefined` if not found */ declare function mimeTypeToExtension(mimeType: string): string | undefined;