import type { FC } from 'react'; import type { TComponentPlugin, TPopoverPlugin } from './types'; export declare type TPluginProvider = { popoverPlugin?: TPopoverPlugin; componentPlugin?: TComponentPlugin; }; export declare const PluginProvider: FC;