import React from 'react'; type CardAuthorProps = { avatarImg: JSX.Element; authorName: React.ReactNode; authorLink?: string; editorName?: string; editorLink?: string; size: string; uploadTime: string; handleClick: (e: React.MouseEvent) => void; isBookmarked: boolean; dataEventCategoryForBookmark?: string; dataEventActionForBookmark?: string; dataEventLabelForBookmark?: string; }; export declare const CardAuthor: ({ avatarImg, authorName, authorLink, uploadTime, size, }: CardAuthorProps) => React.JSX.Element; export {};