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