import { Ref } from "react"; /** * Assigns a value to a ref. * Handles both callback refs and ref objects safely. * * @template T - The type of the ref value * @param ref - The ref to assign the value to (can be callback, ref object, or null) * @param value - The value to assign */ export declare const assignRef: (ref: Ref | null, value: T | null) => void; //# sourceMappingURL=ref.d.ts.map