/** * Returns the type of a file based on its extension. * * @param extension - The file extension to check. * @returns The type of the file (document, video, audio, archive, image, or unknown). * * @example * getFileType('jpg') // returns 'image' */ export declare function getFileType(extension: string): string;