import type { PropsWithChildren } from 'react'; import React from 'react'; import type { EmbedPluginProps } from '../../types/index.js'; import type { BusyCardProps } from './card/index.js'; /** Props for {@link ApiEmbedPluginCard}. */ export interface EmbedPluginCardProps extends PropsWithChildren, EmbedPluginProps, BusyCardProps { } /** Full embed plugin card with providers, resolution, and busy-state rendering. */ export declare const ApiEmbedPluginCard: React.FC; /** Renders the resolved embed plugin card with API error handling and busy state. */ export declare const EmbedPluginCardInner: React.FC; /** @deprecated use EmbedPluginCard and use CardProps instead of FlexBoxProps */ export { EmbedPluginCard as EmbedPlugin } from './card/index.js'; //# sourceMappingURL=EmbedPluginCard.d.ts.map