import type { BoundWitness } from '@xyo-network/sdk'; import React from 'react'; import type { BlockTableColumnSlug } from './BlockTableColumnConfig.js'; import type { BlockTableRowProps } from './TableRow.js'; interface TableRowWithErrorBoundaryProps extends BlockTableRowProps { clickableFields?: BlockTableColumnSlug[]; /** @deprecated - use events to build links instead of passing props */ exploreDomain?: string; index: number; onRowClick?: (value: BoundWitness) => void; } declare const BlockTableRowWithErrorBoundary: React.FC; /** Block table row wrapped in an error boundary for render failures. */ export { BlockTableRowWithErrorBoundary }; //# sourceMappingURL=TableRowWithErrorBoundary.d.ts.map