import { type BoxProps } from '../Box'; export type TableRowProps = Omit & { action?: boolean; hasAction?: boolean; }; declare const TableRow: ({ action, selected, ...props }: TableRowProps) => import("react/jsx-runtime").JSX.Element; export default TableRow; //# sourceMappingURL=TableRow.d.ts.map