import type { Hash } from '@ariestools/sdk'; import React from 'react'; import type { EllipsisTableCellProps } from './EllipsisTableCell.js'; /** Props for {@link HashTableCell}. */ export interface HashTableCellProps extends EllipsisTableCellProps { /** @deprecated - archives are no longer used */ archive?: string; dataType?: 'block' | 'payload'; /** @deprecated - use event listeners instead of link building via props */ exploreDomain?: string; /** @deprecated - use event listeners instead of link building via props */ network?: string; /** @deprecated - onClick instead */ onHashClick?: (value: Hash) => void; } /** Table cell specialized for displaying payload or block hashes. */ export declare const HashTableCell: React.FC; //# sourceMappingURL=HashTableCell.d.ts.map