export interface BlogCardProps { image?: string; title: string; description?: string; author?: string; date?: string; category?: string; href?: string; className?: string; } export declare function BlogCard({ image, title, description, author, date, category, href, className, }: BlogCardProps): import("react/jsx-runtime").JSX.Element;