@atlaskit/renderer
Version:
Renderer component
11 lines (10 loc) • 503 B
TypeScript
import React from 'react';
import type { PropsWithChildren } from 'react';
import RendererActions from '../../actions/index';
export declare const RendererContext: React.Context<RendererActions>;
type RendererActionsContextProps = PropsWithChildren<{
context?: RendererActions;
}>;
export declare function RendererActionsContext({ children, context, }: RendererActionsContextProps): React.JSX.Element;
export declare const RendererActionsContextConsumer: React.Consumer<RendererActions>;
export {};