import { Negative } from 'type-fest/source/numeric'; export { Negative } from 'type-fest/source/numeric'; import { z } from 'zod'; declare const NEGATIVE_NUMBER_SCHEMA: z.ZodNumber; declare const NON_POSITIVE_NUMBER_SCHEMA: z.ZodNumber; declare function validateNegativeNumber(value: N): asserts value is Negative; declare function isNegativeNumber(value: N): value is Negative; declare function validateNonPositiveNumber(value: N): asserts value is Negative; declare function isNonPositiveNumber(value: N): value is Negative; export { NEGATIVE_NUMBER_SCHEMA, NON_POSITIVE_NUMBER_SCHEMA, isNegativeNumber, isNonPositiveNumber, validateNegativeNumber, validateNonPositiveNumber };