import * asReactfrom'react';
/**
* The function that correctly handles passing refs.
*
* @param ref An ref object or function
* @param node A node that should be passed by ref
*/declareconsthandleRef: <N>(ref: React.Ref<N>, node: N) =>void;
exportdefault handleRef;