import type { BoundWitness } from '@xyo-network/sdk'; import type { PropsWithChildren } from 'react'; import React from 'react'; import type { ExtendEventNoun } from '../../../../event/index.js'; import type { PayloadTableProps } from '../../../../payload-table/index.js'; import type { BoundWitnessPayloadTableColumn, ClickableFields } from './payloads-table/index.js'; /** Props for bound witness payload tables. */ export interface BoundWitnessPayloadTableProps extends PayloadTableProps { additionalColumns?: BoundWitnessPayloadTableColumn[]; boundwitness?: BoundWitness; clickableFields?: ClickableFields[]; eventNoun?: ExtendEventNoun; } /** Table of non-bound-witness payload hashes and schemas. */ export declare const BoundWitnessPayloadsTable: React.FC; /** Table of nested bound witness payload hashes and schemas. */ export declare const BoundWitnessPayloadsTableForBWs: React.FC; /** Shared table shell with payload table head for bound witness payload tables. */ export declare const BoundWitnessPayloadsTableInner: React.FC>; //# sourceMappingURL=PayloadsTable.d.ts.map