import { IValidFn } from './core';
interface IPlainObject<GValue = any> {
[p: string]: GValue;
}
export default function <GValue = any, GAllValues = GValue, GMeta = GValue>(
allValues: IPlainObject,
allRules: IPlainObject<(IValidFn | null)[]>
): {
[p: string]: string;
};
export {};