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