UNPKG

@atlaskit/editor-plugin-card

Version:

Card plugin for @atlaskit/editor-core

11 lines (10 loc) 397 B
import { type ReactNode } from 'react'; import { type IntlShape } from 'react-intl'; import { type CardContext } from '@atlaskit/link-provider'; interface Props { children: ReactNode; intl: IntlShape | undefined; smartCardContext: CardContext | undefined; } export declare function SmartCardSSRReactContextsProvider({ smartCardContext, children, intl, }: Props): ReactNode; export {};