import type { Hash } from '@xylabs/sdk-js'; import React from 'react'; import type { EllipsisTableCellProps } from './EllipsisTableCell.tsx'; 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; } export declare const HashTableCell: React.FC; //# sourceMappingURL=HashTableCell.d.ts.map