import { HTMLAttributes, ReactNode } from 'react';
interface ITableHeaderCellProps extends HTMLAttributes<HTMLTableCellElement> {
    className?: string;
    children: ReactNode;
}
export declare const PktTableHeaderCell: ({ className, children, ...props }: ITableHeaderCellProps) => import("react").JSX.Element;
export {};
