import { RefObject } from "../utility-types/base"; /** * 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 */ export declare const isRef: (value: unknown) => value is RefObject;