@atlaskit/dynamic-table
Version:
A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.
16 lines (15 loc) • 537 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type HTMLProps } from 'react';
import type { SortOrderType } from '../types';
import { type TruncateStyleProps } from './constants';
type HeadCellProps = TruncateStyleProps & HTMLProps<HTMLTableCellElement> & {
onClick?: () => void;
isSortable?: boolean;
sortOrder?: SortOrderType;
testId?: string;
};
export declare const HeadCell: import('react').ForwardRefExoticComponent<Omit<HeadCellProps, 'ref'> & import('react').RefAttributes<HTMLTableCellElement>>;
export {};