import { type Primitive } from "@agyemanjp/standard"; export declare const standardValidators: { unique: (cfg: { values: T[]; }) => Validator; required: (cfg: { deep?: boolean; }) => Validator; emailAddress: () => Validator; password: (rules?: {}) => Validator; }; export type Validator = (val: T) => boolean; export type ValidatorFactory = (cfg: Cfg) => Validator;