import React from "react"; export declare type CaArticleCardProps = { className?: string; style?: React.CSSProperties; name: string; date: string; status?: string | number | null; image?: string; actions?: React.ReactNode; draggableControlProps?: any; isSortable?: boolean; onStatusChange?: (status?: string | number | null) => void; onEdit?: () => void; onDuplicate?: () => void; onShare?: () => void; }; export declare const CaArticleCard: { ({ className, style, name, date, status, image, actions, draggableControlProps, isSortable, onStatusChange, onEdit, onDuplicate, onShare, }: CaArticleCardProps): JSX.Element; defaultProps: { className: string; style: {}; image: undefined; status: null; actions: null; draggableControlProps: {}; isSortable: boolean; onStatusChange: () => void; onEdit: null; onDuplicate: null; onShare: null; }; };