import { Float } from "@stryke/types/number"; //#region src/is-float.d.ts /** * Check if the provided value's type is a float * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `number` and is a float */ declare const isFloat: (value: T) => value is Float; //#endregion export { isFloat }; //# sourceMappingURL=is-float.d.cts.map