import { Schema, type ISchemaOptions, type StrictOptions } from "../schema/schema"; export interface INumberOptions extends ISchemaOptions { multipleOf?: number; maximum?: number; exclusiveMaximum?: number; minimum?: number; exclusiveMinimum?: number; } export declare const number: (config?: StrictOptions) => Schema & O; export declare const integer: (config?: StrictOptions) => Schema & O;