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 {};