import type { BoundWitness } from '@xyo-network/sdk'; import type { TableExProps } from '../../../table/index.js'; import type { BlockTableColumnConfig, BlockTableColumnSlug } from './BlockTableColumnConfig.js'; /** Props for {@link BlockTable}. */ export interface BlockTableProps extends TableExProps { blocks?: BoundWitness[] | null; clickableFields?: BlockTableColumnSlug[]; columns?: BlockTableColumnConfig; /** @deprecated - use events to build links instead of passing props */ exploreDomain?: string; onRowClick?: (value: BoundWitness) => void; } //# sourceMappingURL=BlockTableProps.d.ts.map