import { ValidationRule } from "../types/ValidationRule";
import { ValidationValue } from "../types/ValidationValue";
export declare const normalizeRule: <T extends ValidationValue = ValidationValue>(rule?: ValidationRule<T>) => [T | undefined, string | undefined];