import { ValidationResult } from "./types"; /** * A handy utility that converts validation result to a boolean. * Basically it just checks that the validation result is an empty object. * * @param result validation result */ export declare const isValid: (result: ValidationResult) => boolean;