import type { Nullable } from '../../../Types/Nullable'; import type { ElementValidationError } from './Abstracts/Interfaces/IElementValidator'; /** * Validator that requires the control's value to be *not* equal to another control's value. * * State: * * badInput * * @public * @param element - The element to validate. * @param other - The other element to compare the value to. * @returns null if the validation check passes, otherwise an object containing information. */ export declare function notEqualsToValidator(element: HTMLElement & { value: unknown; }, other: HTMLElement & { value: unknown; }): Nullable; //# sourceMappingURL=NotEqualsToElementValidatorFn.d.ts.map