import { Nullable } from "@instill-ai/design-system"; export type RunTableSortableColHeaderProps = { currentSortParamValue?: Nullable; paramName: string; onSort: (value: string) => void; title: string; }; export type Sort = "asc" | "desc" | undefined; export declare const RunsTableSortableColHeader: ({ title, currentSortParamValue, paramName, onSort, }: RunTableSortableColHeaderProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=RunsTableSortableColHeader.d.ts.map