import { SafeInteger } from "./typing"; /** * Truncates the given number into its integer part, * and checks whether the value is within the safe integer range * * @returns the truncated number, guaranteed to be within the range of * [{@link !Number.MIN_SAFE_INTEGER}, {@link !Number.MAX_SAFE_INTEGER}] * @throws {ArgumentRangeError} specified `value` cannot be represented by a safe integer. * @see {@link !Number.isSafeInteger} */ export declare function asSafeInteger(value: string | SafeInteger): SafeInteger; //# sourceMappingURL=asSafeInteger.d.ts.map