import type { TableRowProps } from '@mui/material'; import type { BoundWitness } from '@xyo-network/sdk'; import React from 'react'; import type { BlockTableColumnConfig, BlockTableColumnSlug } from './BlockTableColumnConfig.js'; /** Props for {@link BlockTableRow}. */ export interface BlockTableRowProps extends TableRowProps { block?: BoundWitness; clickableFields?: BlockTableColumnSlug[]; columns?: BlockTableColumnConfig; /** @deprecated - use events to build links instead of passing props */ exploreDomain?: string; /** @deprecated - use events to build links instead of passing props */ network?: string; } /** Table row rendering a bound witness hash, payload count, and validity. */ export declare const BlockTableRow: React.FC; //# sourceMappingURL=TableRow.d.ts.map