import type * as React from 'react'; interface BaseTableRowProps { /** * The table row contents, usually `TableCell`. */ children?: React.ReactNode; /** * @hide-prop This gets set from the parent `TableHead` */ _isTableHeadChild?: boolean; } type OmitProps = 'children'; export type TableRowProps = Omit, OmitProps> & BaseTableRowProps; export declare const TableRow: ({ children, _isTableHeadChild, ...tableRowProps }: TableRowProps) => import("react/jsx-runtime").JSX.Element; export default TableRow;