UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

9 lines (8 loc) 271 B
import { type ReactNode } from 'react'; import { type IntlShape } from 'react-intl'; interface Props { children: ReactNode; intl: IntlShape | undefined; } export declare function ExtensionSSRReactContextsProvider({ children, intl }: Props): ReactNode; export {};