import { Validator } from '../validatorInterface';
/**
 * File limit validator has to be overriden to take into account the files that were previously selected
 * @param previousPlainFiles files that were previously selected
 * @returns a validator that checks if the amount of files selected previously and in the current batch is within the limits
 */
declare const persistentFileLimitValidator: (previousPlainFiles: File[]) => Validator;
export default persistentFileLimitValidator;
