/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type TableHeaderProps = PropsWithChildren<HTMLAttributes<HTMLTableSectionElement>>;
export declare const TableHeader: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLTableSectionElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLTableSectionElement>>;
