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