import type { Ref } from "react"; /** * A small utility function that allows me to apply a passed in ref along with * my own custom ref logic. * * @param instance - The DOM Node instance * @param ref - The prop ref */ export declare function applyRef(instance: E | null, ref?: Ref): void;