import type * as React from 'react'; export declare const fillRef: (ref: React.Ref, node: T) => void; /** * Merge refs into one ref function to support ref passing. */ export declare const composeRef: (...refs: React.Ref[]) => React.Ref; export declare const useComposeRef: (...refs: React.Ref[]) => React.Ref; export declare const supportRef: (nodeOrComponent: any) => boolean; interface RefAttributes extends React.Attributes { ref: React.Ref; } export declare const supportNodeRef: (node: React.ReactNode) => node is React.ReactElement> & RefAttributes; export {};