import { Schema, ValidationContext } from '../schema'; export declare class NumberSchema extends Schema { private _integer; integer(integer?: boolean): this; private _min?; min(min?: number): this; private _max?; max(max?: number): this; toTypeScript(): string; toSchema(): object; validate(value: unknown, context: ValidationContext): void; }