@atlaskit/editor-plugin-card
Version:
Card plugin for @atlaskit/editor-core
9 lines (8 loc) • 547 B
TypeScript
import React from 'react';
import type { SmartCardProps } from './genericCard';
export type InlineCardWithAwarenessProps = {
isOverlayEnabled?: boolean;
isPulseEnabled?: boolean;
isSelected?: boolean;
};
export declare const InlineCardWithAwareness: React.MemoExoticComponent<({ node, cardContext, actionOptions, useAlternativePreloader, view, getPos, pluginInjectionApi, onClick, isPulseEnabled, isOverlayEnabled, isSelected, isPageSSRed, provider, appearance, }: SmartCardProps & InlineCardWithAwarenessProps) => React.JSX.Element>;