interface MutableRefObject { current: T; } /** * 为嵌套或高阶组件传递ref * @see 该函数实现来自{@link https://github.com/facebook/react/issues/8873 Maintaining ref prop through React.cloneElement()} * @see {@link https://reactjs.org/docs/forwarding-refs.html Forwarding Refs} * @category React */ export declare function forwardingRef(...args: Array | ((node: TNode) => void)>): (node: TNode) => void; export {};