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>;
