import { StringRuleChecker } from './string-rule-checker'; import { GuardResult } from '../../core/guard-result'; export declare class StringNotEquals extends StringRuleChecker<{ type: 'notEquals'; value: string; }> { constructor(rule: { type: 'notEquals'; value: string; }, value: string); /** * @override */ exec(): GuardResult; private notEquals; }