import { type Validator } from 'valgen';
import { DECODER, ENCODER } from '../../constants.js';
export declare class NumberType {
    constructor(properties?: Partial<NumberType>);
    minValue?: number;
    maxValue?: number;
    protected [DECODER](properties: Partial<this>): Validator;
    protected [ENCODER](properties: Partial<this>): Validator;
}
