import React from 'react'; import { RefManagerContextType } from '../type'; export declare const RefManagerContext: React.Context; interface RefManagerProviderProps { children: React.ReactNode; } export declare const RefManagerProvider: React.FC; export declare const useRefManagerProvider: () => RefManagerContextType; export {};