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