import type { TableRowProps } from '@mui/material'; import React from 'react'; type clickableFields = 'address' | 'signature'; /** Props for {@link BoundWitnessSignatureTableRow}. */ export interface BoundWitnessSignatureTableRowProps extends TableRowProps { address?: string; /** @deprecated - archives no longer used */ archive?: string; clickableFields?: clickableFields[]; dataHash?: string; previousHash?: string | null; signature?: string; } /** Signature table row showing address, previous hash, signature, and validity. */ export declare const BoundWitnessSignatureTableRow: React.FC; export {}; //# sourceMappingURL=SignatureTableRow.d.ts.map