import { HTMLAttributes } from 'react';
export interface TableRowProps extends HTMLAttributes {
feHighlight?: boolean;
interactive?: boolean;
type?: 'body' | 'foot' | 'head';
}
/**
* Renders a table row
*/
declare const TableRow: {
({ children, ...rest }: TableRowProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default TableRow;