/**
 * Validates and returns the MIME type for a given filename
 * @param filename - The name of the file (e.g., 'image.png', 'data.json')
 * @returns The MIME type string
 * @throws Error if the file type is not supported
 */
export declare function getMimeType(filename: string): string;
