import { Rule } from "./types/Validate"; import { Validation } from "./types"; type Or = (rule: Rule) => Validation; export declare const or: Or; export {};