import { ValidationMode } from './types';
export declare const VALIDATION_MODE: ValidationMode;
export declare const VALUE = "value";
export declare const UNDEFINED = "undefined";
export declare const EVENTS: {
    BLUR: string;
    CHANGE: string;
    INPUT: string;
};
export declare const SELECT = "select";
export declare const INPUT_VALIDATION_RULES: {
    max: string;
    min: string;
    maxLength: string;
    minLength: string;
    pattern: string;
    required: string;
    validate: string;
};
export declare const REGEX_IS_DEEP_PROP: RegExp;
export declare const REGEX_IS_PLAIN_PROP: RegExp;
export declare const REGEX_PROP_NAME: RegExp;
export declare const REGEX_ESCAPE_CHAR: RegExp;
export declare const REGEX_ARRAY_FIELD_INDEX: RegExp;
