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