import { ReactNode } from 'react'; declare type SortType = { direction: string; dataIndex: string; }; declare type HeaderCellProps = { isAction?: boolean; dataIndex?: string; isSort?: boolean; sort?: SortType; onSort?: (sort: SortType) => void; children: ReactNode; align?: string; }; export declare function HeaderCell({ isAction, dataIndex, isSort, sort, onSort, children, align, }: HeaderCellProps): JSX.Element; export {};