import { FC, HTMLAttributes } from 'react';
export type TableRowProps = HTMLAttributes;
/** The TableRow component represents a single `` element within a table, used to group together a set of cells (`| ` or ` | `) in either the header, body, or footer sections of a table layout */
export declare const TableRow: FC;
|