import React from "react"; declare type Props = { title: string; createDate: string; description?: string; image?: string; actions?: React.ReactNode; onClick?: () => void; small?: boolean; }; export declare const ArticleCard: React.FC; export {};