/** * Strictly checks if a value is a negative number (including -0 and negative BigInt) * @param value - The value to check * @returns true if the value is a negative number or bigint */ export declare const isNegative: (value: unknown) => boolean; export { }