import type { ReactNode } from 'react'; import React from 'react'; export declare const ToolbarProvider: ({ children }: { children: ReactNode; }) => JSX.Element; export declare const useToolbarPortalRegister: () => { setToolbarPortalEl: (element: HTMLElement | null) => void; }; export declare type Props = { children: ReactNode; keyName: string; }; export declare const Toolbar: (props: Props) => React.ReactPortal | null; //# sourceMappingURL=Toolbar.d.ts.map