import { NonNegative } from 'type-fest/source/numeric'; export { NonNegative } from 'type-fest/source/numeric'; import { z } from 'zod'; declare const POSITIVE_NUMBER_SCHEMA: z.ZodNumber; declare const NON_NEGATIVE_NUMBER_SCHEMA: z.ZodNumber; declare function validatePositiveNumber(value: N): asserts value is NonNegative; declare function isPositiveNumber(value: N): value is NonNegative; declare function validateNonNegativeNumber(value: N): asserts value is NonNegative; declare function isNonNegativeNumber(value: N): value is NonNegative; export { NON_NEGATIVE_NUMBER_SCHEMA, POSITIVE_NUMBER_SCHEMA, isNonNegativeNumber, isPositiveNumber, validateNonNegativeNumber, validatePositiveNumber };