import { RefObject } from "@stryke/types/base"; //#region src/is-ref.d.ts /** * Check if the provided value's type is a ref * * @param value - The value to type check * @returns An indicator specifying if the object provided is of type ref */ declare const isRef: (value: unknown) => value is RefObject; //#endregion export { isRef }; //# sourceMappingURL=is-ref.d.mts.map