import type { LengthValidator, Validator } from './base'; export declare interface DecimalValidatorType extends Validator, LengthValidator { positive: () => DecimalValidatorType negative: () => DecimalValidatorType divisibleBy: (divisor: number) => DecimalValidatorType custom: (fn: (value: number | null | undefined) => boolean, message: string) => DecimalValidatorType }