import type { TableRowProps } from '@mui/material'; import React from 'react'; /** * Props for {@link BlockSignatureTableRow}. * @deprecated use from @xyo-network/react-default-plugin instead */ export interface BlockSignatureTableRowProps extends TableRowProps { address?: string; archive?: string; hash?: string; previousHash?: string | null; signature?: string; } /** * Table row for a single address signature on a bound-witness block. * @deprecated use from @xyo-network/react-default-plugin instead */ export declare const BlockSignatureTableRow: React.FC; //# sourceMappingURL=SignatureTableRow.d.ts.map