import { BaseError } from 'make-error'; export declare class InvalidNumberError extends BaseError { constructor(); } export declare function isNumber(input: unknown): input is number; /** You might want to consider constraining this somehow to avoid display and storage bugs. */ export declare function number(input: unknown): number;