import React from 'react'; import type { PropsWithChildren } from 'react'; import RendererActions from '../../actions/index'; export declare const RendererContext: React.Context; type RendererActionsContextProps = PropsWithChildren<{ context?: RendererActions; }>; export declare function RendererActionsContext({ children, context, }: RendererActionsContextProps): React.JSX.Element; export declare const RendererActionsContextConsumer: React.Consumer; export {};