UNPKG

strapi-plugin-comments

Version:
9 lines (8 loc) 269 B
import { FC } from "react"; import { ThProps } from "@strapi/design-system/dist/components/Table/Cell"; type SortableThProps = { label: string; orderByKey?: string; } & Omit<ThProps, 'children'>; export declare const SortableTh: FC<SortableThProps>; export {};