import { FC } from "react"; import { ThProps } from "@strapi/design-system/dist/components/Table/Cell"; type SortableThProps = { label: string; orderByKey?: string; } & Omit; export declare const SortableTh: FC; export {};