import { FileType } from '../types/fileUpload';
export declare const fileTypeExtensions: Record<FileType, string[]>;
export declare const validateFile: (file: File, allowedTypes: FileType[] | undefined, maxSize: number, formatValidation?: (file: File) => Promise<boolean>) => Promise<boolean>;
