import type { LengthValidator, Validator } from './base'; export declare interface JsonValidatorType extends Validator, LengthValidator { custom: (fn: (value: string | null | undefined) => boolean, message: string) => any }