import { ValidationRule } from '../types/index.js'; /** * @file ensures that a value is a non-empty string. * @author Nick Krause */ declare const isNonEmptyString: ValidationRule; export { isNonEmptyString };