/// import { Issue } from '@/common/types'; export interface InlineIssueTagProps { data: Issue; } declare const InlineIssueTag: { ({ data, }: InlineIssueTagProps): JSX.Element; optionRenderer(data: Issue): JSX.Element; renderer(data: Issue): JSX.Element; }; export default InlineIssueTag;