UNPKG

strapi-plugin-comments

Version:
10 lines (9 loc) 267 B
import { FC } from 'react'; import { Report } from '../../api/schemas'; type ReportsTableRowProps = { item: Report; isChecked: boolean; onSelectionChange: (id: number) => void; }; export declare const ReportsTableRow: FC<ReportsTableRowProps>; export {};