import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; type Color = 'light' | 'dark'; type ActionIcon = 'launch' | 'arrowRight' | 'download' | 'email' | 'disabled'; interface ArticleCardProps { children?: ReactNode; href?: string | null; title?: string | null; subTitle?: string | null; author?: string | null; date?: string | null; readTime?: string | null; color?: Color; disabled?: boolean | null; actionIcon?: ActionIcon | null; className?: string | null; } /** * The `` component should generally be used inside of * `` and`` components. * * ``` * * * * * ![](img.png) * * * * * ``` */ export declare const ArticleCard: MdxComponent; export {};