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