//#region src/is-integer.d.ts /** * Check if the provided value's type is an integer * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `number` and is an integer */ declare const isInteger: (value: unknown) => boolean; //#endregion export { isInteger }; //# sourceMappingURL=is-integer.d.cts.map