import { ValidationRule } from '../types/index.js'; /** * Validator to ensure that this value is equivalent to another that may or may not be available * at time of definition. */ declare const isEqualTo: (value: any) => ValidationRule; export { isEqualTo };