import * as React from 'react'; /** * Helper to merge refs from within class components. */ export declare const createMergedRef: (value?: TValue | undefined) => (...newRefs: (React.Ref | undefined)[]) => (newValue: TType | TValue | null) => void;