import { BaseTypeOptions, OptionsInput, TypeInterface } from '../types/type-definitions.js'; type NumberTypeOptions = BaseTypeOptions; export type NumberType = TypeInterface<'number', Options>; export declare function NumberType(): NumberType; export declare function NumberType>(options?: Options): NumberType; export {};