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