import React from 'react'; type IssueCardProps = { title: string; createdAt: string; updatedAt?: string; url: string; authorName: string; assigneeName?: string; assigneeAvatar?: string; authorAvatar?: string; repositoryName: string; commentsCount: number; even: boolean; }; export declare const IssueCard: (props: IssueCardProps) => React.JSX.Element; export {};