import React from "react"; interface PluginProviderProps { children: React.ReactNode; parentRef: HTMLElement | null; } export declare const PluginProvider: ({ children, parentRef, }: PluginProviderProps) => React.JSX.Element; export declare const usePluginContext: () => { getParentRef: () => HTMLElement | undefined; }; export {};