/**
 * StringToRules
 * @description
 * Convert string to rule object
 * @param str
 * @constructor
 */
declare const StringToRules: (str: string) => {
    [key: string]: any;
};
export = StringToRules;
