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