import React from 'react'; import { CommonStyledProps } from '../types'; declare type TableHeadCellProps = { children?: React.ReactNode; disabled?: boolean; sort?: 'asc' | 'desc' | null; } & React.TdHTMLAttributes & CommonStyledProps; declare const TableHeadCell: React.ForwardRefExoticComponent<{ children?: React.ReactNode; disabled?: boolean | undefined; sort?: "desc" | "asc" | null | undefined; } & React.TdHTMLAttributes & CommonStyledProps & React.RefAttributes>; export { TableHeadCell, TableHeadCellProps }; //# sourceMappingURL=TableHeadCell.d.ts.map