UNPKG

@fluster.io/dev

Version:

14 lines (13 loc) 404 B
import { FC, HTMLProps, ReactNode } from 'react'; export interface EmbeddableCardProps extends HTMLProps<HTMLDivElement> { title?: string; desc?: string; InlineMdxContent: FC<{ mdx: string; abortIfNoMath?: boolean; }>; } export declare const EmbeddableCard: { ({ title, desc, children, InlineMdxContent, }: EmbeddableCardProps): ReactNode; displayName: string; };